X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fcommons%2Fliblldp%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fliblldp%2FEthernet.java;h=424bdd016aaae2ec06799e692b661bcd0c2a16f1;hb=refs%2Fchanges%2F83%2F48683%2F4;hp=c2d9e7003e2908f23874e1495149bd14ffead437;hpb=8d8e440aa795660349714241ec64fdf4b462b378;p=controller.git diff --git a/opendaylight/commons/liblldp/src/main/java/org/opendaylight/controller/liblldp/Ethernet.java b/opendaylight/commons/liblldp/src/main/java/org/opendaylight/controller/liblldp/Ethernet.java index c2d9e7003e..424bdd016a 100644 --- a/opendaylight/commons/liblldp/src/main/java/org/opendaylight/controller/liblldp/Ethernet.java +++ b/opendaylight/commons/liblldp/src/main/java/org/opendaylight/controller/liblldp/Ethernet.java @@ -104,7 +104,7 @@ public class Ethernet extends Packet { /** * Sets the destination MAC address for the current Ethernet object instance - * @param byte[] - the destinationMACAddress to set + * @param destinationMACAddress the destinationMACAddress to set */ public Ethernet setDestinationMACAddress(byte[] destinationMACAddress) { fieldValues.put(DMAC, destinationMACAddress); @@ -113,7 +113,7 @@ public class Ethernet extends Packet { /** * Sets the source MAC address for the current Ethernet object instance - * @param byte[] - the sourceMACAddress to set + * @param sourceMACAddress the sourceMACAddress to set */ public Ethernet setSourceMACAddress(byte[] sourceMACAddress) { fieldValues.put(SMAC, sourceMACAddress); @@ -122,7 +122,7 @@ public class Ethernet extends Packet { /** * Sets the etherType for the current Ethernet object instance - * @param short - the etherType to set + * @param etherType the etherType to set */ public Ethernet setEtherType(short etherType) { byte[] ethType = BitBufferHelper.toByteArray(etherType);