| |
|
| java.lang.Object net.fenyo.gnetwatch.GUI.VisualElement net.fenyo.gnetwatch.targets.Target net.fenyo.gnetwatch.targets.TargetIPv4Range
TargetIPv4Range | public class TargetIPv4Range extends Target (Code) | | TargetIPv4Range implements a range defined by two IPv4 adresses.
author: Alexandre Fenyo version: $Id: TargetIPv4Range.java,v 1.10 2007/03/03 00:38:19 fenyo Exp $ |
Method Summary | |
public boolean | canManageThisChild(VisualElement visual_element) Checks that the parameter can be attached to this target.
Parameters: visual_element - parameter to check. | public boolean | equals(Object o) Compares two targets.
Parameters: o - target to compare to. | protected Inet4Address | getBegin() Returns the first address in the range.
none. | protected Inet4Address | getEnd() Returns the last address in the range.
none. | public int | hashCode() Returns the hashcode for this target.
none. | public void | initialize(GUI gui) Initializes this target.
Parameters: gui - current GUI instance. |
canManageThisChild | public boolean canManageThisChild(VisualElement visual_element)(Code) | | Checks that the parameter can be attached to this target.
Parameters: visual_element - parameter to check. true if the parameter can be attached to this target. |
equals | public boolean equals(Object o)(Code) | | Compares two targets.
Parameters: o - target to compare to. true if the targets are equal. |
getBegin | protected Inet4Address getBegin()(Code) | | Returns the first address in the range.
none. Inet4Address first address. |
getEnd | protected Inet4Address getEnd()(Code) | | Returns the last address in the range.
none. Inet4Address last address. |
hashCode | public int hashCode()(Code) | | Returns the hashcode for this target.
none. int hashcode. |
initialize | public void initialize(GUI gui)(Code) | | Initializes this target.
Parameters: gui - current GUI instance. void. |
|
|
|