This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / IR / NameDescriptor.java
diff --git a/Robust/src/IR/NameDescriptor.java b/Robust/src/IR/NameDescriptor.java
deleted file mode 100644 (file)
index 344d57c..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-package IR;
-
-public class NameDescriptor extends Descriptor {
-    String identifier;
-    NameDescriptor nd;
-    public NameDescriptor(NameDescriptor nd, String id) {
-       super(nd.toString()+"."+id);
-       identifier=id;
-       this.nd=nd;
-    }
-
-    public NameDescriptor(String id) {
-       super(id);
-       identifier=id;
-       nd=null;
-    }
-
-    public String getIdentifier() {
-       return identifier;
-    }
-
-    public NameDescriptor getBase() {
-       return nd;
-    }
-
-    public String getRoot() {
-       if (nd==null)
-           return identifier;
-       else 
-           return nd.getRoot();
-    }
-
-    public String toString() {
-       if (nd==null) 
-           return identifier;
-       else
-           return nd+"."+identifier;
-    }
-
-}