All Packages Class Hierarchy This Package Previous Next Index
Class VisiModel.NodeUpdate
java.lang.Object
|
+----VisiModel.ModelUpdate
|
+----VisiModel.NodeUpdate
- public class NodeUpdate
- extends ModelUpdate
Class definition for an update to a node in an IP/ATM network.
- Version:
- $Revision: 1.11 $, $Date: 2000/10/12 14:09:15 $
- Author:
- John Cavanaugh, Joseph Thomas
-
description
- The node's description.
-
flags
- Flags indicating special node information.
-
name
- The name of the node to be updated.
-
nodeType
- The node's type.
-
NodeUpdate(int, String, String, long, int, long)
- Construct a node update.
-
getDescription()
- Get the node's description.
-
getFlags()
- Get the node's flags value.
-
getName()
- Get the node name.
-
getNodeType()
- Get the node's type.
-
setFlags(long)
- Set the node's flags value.
-
toString()
- Get a string describing the node update object.
name
private String name
- The name of the node to be updated.
description
private String description
- The node's description.
nodeType
private int nodeType
- The node's type.
flags
private long flags
- Flags indicating special node information.
NodeUpdate
public NodeUpdate(int type,
String name,
String description,
long time,
int nodeType,
long flags)
- Construct a node update.
- Parameters:
- type - The update type.
- name - The name of the node to be updated.
- description - The node's description.
- time - The time when the object data was created.
- nodeType - The node's type.
getName
public String getName()
- Get the node name.
- Returns:
- The node name.
getDescription
public String getDescription()
- Get the node's description.
- Returns:
- The node's description.
getNodeType
public int getNodeType()
- Get the node's type.
- Returns:
- The node's type.
getFlags
public long getFlags()
- Get the node's flags value.
- Returns:
- The flags value.
setFlags
public void setFlags(long flags)
- Set the node's flags value.
- Parameters:
- flags - The new flags value.
toString
public String toString()
- Get a string describing the node update object.
- Returns:
- A string describing the node update object.
- Overrides:
- toString in class ModelUpdate
All Packages Class Hierarchy This Package Previous Next Index