edits
[cdsspec-compiler.git] / src / edu / uci / eecs / specCompiler / specExtraction / Construct.java
index 373948ba6f83aeecea75e29456d06792c891da42..7b6e788da010c99ebf360b6139b7bb5c0385df3e 100644 (file)
@@ -4,7 +4,7 @@ import java.io.File;
 
 /**
  * <p>
- * This is just an abstract class for all the constructs.
+ * An abstract class for all different specification constructs.
  * </p>
  * 
  * @author peizhaoo
@@ -13,17 +13,9 @@ import java.io.File;
 abstract public class Construct {
        public final File file;
        public final int beginLineNum;
-       public final String interfaceDeclBody;
 
        public Construct(File file, int beginLineNum) {
                this.file = file;
                this.beginLineNum = beginLineNum;
-               this.interfaceDeclBody = "";
-       }
-
-       public Construct(File file, int beginLineNum, String interfaceDeclBody) {
-               this.file = file;
-               this.beginLineNum = beginLineNum;
-               this.interfaceDeclBody = interfaceDeclBody;
        }
 }