| |
|
| java.lang.Object net.fenyo.gnetwatch.GUI.VisualElement net.fenyo.gnetwatch.targets.Target net.fenyo.gnetwatch.targets.TargetIPv6
TargetIPv6 | public class TargetIPv6 extends Target (Code) | | TargetIPv4 implements an IPv6 capable target.
author: Alexandre Fenyo version: $Id: TargetIPv6.java,v 1.14 2007/03/09 22:44:20 fenyo Exp $ |
Method Summary | |
public boolean | addTarget(GUI gui, VisualElement parent) Attaches this target to a specific parent.
Parameters: gui - current GUI instance. Parameters: parent - parent. | public static void | addTargetIPv6(GUI gui, String addr_str) Attaches this target to a specific parent defined by its address.
Parameters: gui - current GUI instance. Parameters: addr_str - parent address. | public boolean | canManageThisChild(VisualElement visual_element) Checks that the parameter can be attached to this target.
Parameters: visual_element - parameter to check. | public void | checkSNMPAwareness() Checks that this host is SNMP capable.
none. | public boolean | equals(Object o) Compares two targets.
Parameters: o - target to compare to. | public Inet6Address | getAddress() Returns the IP address.
none. | public IPQuerier | getIPQuerier() Returns the IP querier.
none. | public SNMPQuerier | getSNMPQuerier() Returns the SNMP querier.
none. | public int | hashCode() Returns the hashcode for this target.
none. | final protected void | initialize(GUI gui) Initializes this target.
Parameters: gui - current GUI instance. |
addTarget | public boolean addTarget(GUI gui, VisualElement parent)(Code) | | Attaches this target to a specific parent.
Parameters: gui - current GUI instance. Parameters: parent - parent. true if this target has been succesfully attached. |
addTargetIPv6 | public static void addTargetIPv6(GUI gui, String addr_str)(Code) | | Attaches this target to a specific parent defined by its address.
Parameters: gui - current GUI instance. Parameters: addr_str - parent address. true if this target has been succesfully attached. |
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. |
checkSNMPAwareness | public void checkSNMPAwareness()(Code) | | Checks that this host is SNMP capable.
none. void. |
equals | public boolean equals(Object o)(Code) | | Compares two targets.
Parameters: o - target to compare to. true if the targets are equal. |
getAddress | public Inet6Address getAddress()(Code) | | Returns the IP address.
none. Inet4Address IP address. |
getIPQuerier | public IPQuerier getIPQuerier()(Code) | | Returns the IP querier.
none. IPQuerier querier instance. |
getSNMPQuerier | public SNMPQuerier getSNMPQuerier()(Code) | | Returns the SNMP querier.
none. SNMPQuerier querier instance. |
hashCode | public int hashCode()(Code) | | Returns the hashcode for this target.
none. int hashcode. |
initialize | final protected void initialize(GUI gui)(Code) | | Initializes this target.
Parameters: gui - current GUI instance. void. |
|
|
|