summaryrefslogtreecommitdiff
path: root/java/src/IceGrid/TreeNode/NodeVar.java
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2005-06-21 15:26:54 +0000
committerBernard Normier <bernard@zeroc.com>2005-06-21 15:26:54 +0000
commit9a746ddb2e8daa9c64211c57825a178f8c7a3581 (patch)
tree66076e0f6b81aa381799cbe2a3b27ee883fc5dcd /java/src/IceGrid/TreeNode/NodeVar.java
parentadded missing file. (diff)
downloadice-9a746ddb2e8daa9c64211c57825a178f8c7a3581.tar.bz2
ice-9a746ddb2e8daa9c64211c57825a178f8c7a3581.tar.xz
ice-9a746ddb2e8daa9c64211c57825a178f8c7a3581.zip
Initial commit for the IceGrid Admin GUI
Diffstat (limited to 'java/src/IceGrid/TreeNode/NodeVar.java')
-rwxr-xr-xjava/src/IceGrid/TreeNode/NodeVar.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/java/src/IceGrid/TreeNode/NodeVar.java b/java/src/IceGrid/TreeNode/NodeVar.java
new file mode 100755
index 00000000000..916276c9cae
--- /dev/null
+++ b/java/src/IceGrid/TreeNode/NodeVar.java
@@ -0,0 +1,27 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+package IceGrid.TreeNode;
+
+import IceGrid.NodeDescriptor;
+
+class NodeVar extends Leaf
+{
+ NodeVar(NodeDescriptor descriptor)
+ {
+ _descriptor = descriptor;
+ }
+
+ public String toString()
+ {
+ return _descriptor.name;
+ }
+
+ private NodeDescriptor _descriptor;
+
+}