summaryrefslogtreecommitdiff
path: root/java/src/ResumeNode.java
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-11 06:01:44 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-11 06:01:44 +0000
commit29bc99605b3001024214877b685194229b053770 (patch)
treef893f1e4b64e027ecb12bd3ad323b84d9ba58a26 /java/src/ResumeNode.java
parent00318e0f86593079270e84624efbcac2b1285aff (diff)
downloadATCD-poa_start.tar.gz
This commit was manufactured by cvs2svn to create tag 'poa_start'.poa_start
Diffstat (limited to 'java/src/ResumeNode.java')
-rw-r--r--java/src/ResumeNode.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/java/src/ResumeNode.java b/java/src/ResumeNode.java
deleted file mode 100644
index 00d42a2994a..00000000000
--- a/java/src/ResumeNode.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/*************************************************
- *
- * = PACKAGE
- * JACE.ServiceConfigurator
- *
- * = FILENAME
- * ResumeNode.java
- *
- * Used when a service is specified to be resumed based on a line
- * in a service configurator file. The actual implementation of the
- * service being resumed does the work.
- *
- *@author Everett Anderson
- *
- *************************************************/
-package JACE.ServiceConfigurator;
-
-import java.io.*;
-import JACE.ServiceConfigurator.*;
-import JACE.OS.*;
-import java_cup.runtime.*;
-
-class ResumeNode extends ParseNode
-{
- public ResumeNode (int act_num)
- {
- super(act_num);
- }
-
- public void apply ()
- {
- ACE.DEBUG("ResumeNode apply: " + this.name_);
-
- if (JACE.ServiceConfigurator.ServiceConfig.resume(this.name_) == -1)
- ACE.ERROR("Error resuming " + this.name_);
- }
-};