Adds a NetMask object to the set if the set does not contain it @param netmask The NetMask to add @return true if the object was added
(NetMask netmask)
| 86 | * @return true if the object was added |
| 87 | */ |
| 88 | public boolean add(NetMask netmask) { |
| 89 | return netmasks.add(netmask); |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * Creates a NetMask object from the input string and adds it to the set. |