summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/parserutils
diff options
context:
space:
mode:
authorbculkin2442 <bjculkin@mix.wvu.edu>2016-11-16 11:22:33 -0500
committerbculkin2442 <bjculkin@mix.wvu.edu>2016-11-16 11:22:33 -0500
commitf0e585d22c24eec3a723c6f0ea2a18252c570303 (patch)
treeddeefae2872ee21e507131a8f08465cc81713c0f /BJC-Utils2/src/main/java/bjc/utils/parserutils
parentd02e409ef8a389101970e70a105d30b7b1948ecf (diff)
Documentation update
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/parserutils')
-rw-r--r--BJC-Utils2/src/main/java/bjc/utils/parserutils/StackBasedConfigReader.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/parserutils/StackBasedConfigReader.java b/BJC-Utils2/src/main/java/bjc/utils/parserutils/StackBasedConfigReader.java
deleted file mode 100644
index 2d15711..0000000
--- a/BJC-Utils2/src/main/java/bjc/utils/parserutils/StackBasedConfigReader.java
+++ /dev/null
@@ -1,37 +0,0 @@
-package bjc.utils.parserutils;
-
-/**
- * This class parses a config file written in RPN and uses it to construct
- * data items
- *
- * @author ben
- *
- * TODO implement me
- */
-public class StackBasedConfigReader {
- public static interface IItem {
- public ItemType getType();
- }
-
- /**
- * Represents the types of item that can be found on stacks
- *
- * @author ben
- *
- */
- public static enum ItemType {
- /**
- * Represents an integral number
- */
- INTEGER,
- /**
- * Represents a string of characters
- */
- STRING,
- /**
- * Represents an arbitrary object
- */
- OBJECT
- }
-
-}