diff options
author | Bernard Normier <bernard@zeroc.com> | 2005-07-01 15:20:33 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2005-07-01 15:20:33 +0000 |
commit | 1ff98f14066ee60dd8ef2109cf7d772235740a9b (patch) | |
tree | 3f6e809c3d470e1190d1f73bd02f1b8d9847e78a /java/src/IceGrid/TreeNode/Application.java | |
parent | Removed applicationSynced call, fixed node observer nodeUp method to not (diff) | |
download | ice-1ff98f14066ee60dd8ef2109cf7d772235740a9b.tar.bz2 ice-1ff98f14066ee60dd8ef2109cf7d772235740a9b.tar.xz ice-1ff98f14066ee60dd8ef2109cf7d772235740a9b.zip |
Added start/stop popup menu
Diffstat (limited to 'java/src/IceGrid/TreeNode/Application.java')
-rwxr-xr-x | java/src/IceGrid/TreeNode/Application.java | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/java/src/IceGrid/TreeNode/Application.java b/java/src/IceGrid/TreeNode/Application.java index 887788c6044..195dd921167 100755 --- a/java/src/IceGrid/TreeNode/Application.java +++ b/java/src/IceGrid/TreeNode/Application.java @@ -58,9 +58,18 @@ class Application extends Parent _descriptor.variables.putAll(desc.variables);
//
- // TODO: comment
+ // Targets and comment
//
+ if(desc.targets != null)
+ {
+ _descriptor.targets = desc.targets.value;
+ }
+
+ if(desc.comment != null)
+ {
+ _descriptor.comment = desc.comment.value;
+ }
//
// Server templates
|