diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-11-24 16:35:19 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-11-24 16:35:19 +0000 |
commit | 7fa859399ee1c913c23bd33bb7d54244fc257f0d (patch) | |
tree | 2e8edbbb037bf691b40323d89cd83dc7c722c2d4 /java/src/ParseNode.java | |
parent | dd75e70618081c568cb5e5c8bda67e4e3e079405 (diff) | |
download | ATCD-ACE_4_3_56.tar.gz |
This commit was manufactured by cvs2svn to create tag 'ACE_4_3_56'.ACE_4_3_56
Diffstat (limited to 'java/src/ParseNode.java')
-rw-r--r-- | java/src/ParseNode.java | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/java/src/ParseNode.java b/java/src/ParseNode.java deleted file mode 100644 index b6d2d4957ed..00000000000 --- a/java/src/ParseNode.java +++ /dev/null @@ -1,74 +0,0 @@ -/************************************************* - * - * = PACKAGE - * JACE.ServiceConfigurator - * - * = FILENAME - * ParseNode.java - * - * Base class for the data types used in the parse tree for adjusting - * services. Things like SuspendNode extend this. They help connect - * CUP/JLex with the service configurator system. - * - *@author Everett Anderson - * - *************************************************/ -package JACE.ServiceConfigurator; - -import java.io.*; -import JACE.ServiceConfigurator.*; -import JACE.OS.*; -import java_cup.runtime.*; - -public class ParseNode extends java_cup.runtime.symbol -{ - /** - * Constructor - * - */ - public ParseNode (int number) - { - super(number); - - this.name_ = new String("Uninitialized"); - } - - /** - * Initialize the service (subclasses - * may do more than set the name) - */ - public void init (String name) - { - this.name_ = name; - } - - /** - * Subclasses override to do real work, usually - * initiating a service or modifying one - */ - public void apply () - { - // Empty - } - - /** - * Retrive the service name - */ - public String name() - { - return this.name_; - } - - /** - * Set the name of the service - */ - public void name(String newName) - { - this.name_ = newName; - } - - String name_; -}; - - - |