tom

Adding package.html javadocs for the OF controller code.

......@@ -6,8 +6,9 @@ package org.onlab.onos.of.controller;
public interface PacketListener {
/**
* Handle the packet.
* @param pktCtx the packet context ({@link }
* Handles the packet.
*
* @param pktCtx the packet context
*/
public void handlePacket(PacketContext pktCtx);
}
......
......@@ -45,7 +45,7 @@ public interface RoleHandler {
*
* @param role
* @throws IOException
* @returns false if and only if the switch does not support role-request
* @return false if and only if the switch does not support role-request
* messages, according to the switch driver; true otherwise.
*/
public boolean sendRoleRequest(RoleState role, RoleRecvStatus exp)
......@@ -53,8 +53,7 @@ public interface RoleHandler {
/**
* Extract the role information from an OF1.3 Role Reply Message.
* @param h
* @param rrmsg
* @param rrmsg role reply message
* @return RoleReplyInfo object
* @throws SwitchStateException
*/
......
package org.onlab.onos.of.drivers;
package org.onlab.onos.of.drivers.impl;
/**
* Created by tom on 9/2/14.
......