diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-04-12 01:02:34 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-04-12 01:02:34 +0000 |
commit | 2996933cc12d5493d68fad3873a45c3aabba3e18 (patch) | |
tree | eca5b8bdef0a38fe4736df3c33f73da99ab487bb /java/src/AddServiceObjectNode.java | |
parent | 55c07b3e66734053a180f1d0ebb644ea6fa3c3bf (diff) | |
download | ATCD-Current.tar.gz |
This commit was manufactured by cvs2svn to create tag 'Current'.Current
Diffstat (limited to 'java/src/AddServiceObjectNode.java')
-rw-r--r-- | java/src/AddServiceObjectNode.java | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/java/src/AddServiceObjectNode.java b/java/src/AddServiceObjectNode.java deleted file mode 100644 index 603b5b61098..00000000000 --- a/java/src/AddServiceObjectNode.java +++ /dev/null @@ -1,58 +0,0 @@ -package JACE.ServiceConfigurator; - -import java.io.*; -import JACE.OS.*; -import java_cup.runtime.*; - -class AddServiceObjectNode extends ParseNode -{ - - public AddServiceObjectNode (int act_num) - { - super(act_num); - - this.locator_ = new String(); - this.params_ = new String(); - } - - /* String with possible locator information -- used when trying to load - old C++ format files */ - public String locator () - { - return this.locator_; - } - - public String params () - { - return this.params_; - } - - public void params (String params) - { - this.params_ = params; - } - - public boolean suspended () - { - return this.suspended_; - } - - public void init(String name, String locator, boolean suspended) - { - super.name_ = name; - this.locator_ = locator; - this.suspended_ = suspended; - } - - public void apply () - { - ACE.DEBUG("AddServiceObjectNode apply"); - - if (JACE.ServiceConfigurator.ServiceConfig.initialize(this) == -1) - ACE.ERROR("Error adding " + this.name_); - } - - String params_; - String locator_; - boolean suspended_; -}; |