Change tabbing for everything....
[IRC.git] / Robust / src / IR / Tree / TagExpressionList.java
index d74b60d8b07679603c4d41710ac8ffc1d1e002f6..5d19f3e728ef156db4953e1b0bb6af00af8132c2 100644 (file)
@@ -3,41 +3,41 @@ import java.util.Vector;
 import IR.Flat.TempDescriptor;
 
 public class TagExpressionList {
-    Vector names;
-    Vector types;
-    Vector temps;
-
-    public TagExpressionList() {
-       names=new Vector();
-       types=new Vector();
-       temps=new Vector();
-    }
-    
-    public void addTag(String type, String name) {
-       types.add(type);
-       names.add(name);
-    }
-
-    public int numTags() {
-       return names.size();
-    }
-
-    public void setTemp(int i, TempDescriptor tmp) {
-       if (i>=temps.size())
-           temps.setSize(i+1);
-       temps.set(i, tmp);
-    }
-
-    public TempDescriptor getTemp(int i) {
-       return (TempDescriptor) temps.get(i);
-    }
-
-    public String getName(int i) {
-       return (String) names.get(i);
-    }
-
-    public String getType(int i) {
-       return (String) types.get(i);
-    }
+  Vector names;
+  Vector types;
+  Vector temps;
+
+  public TagExpressionList() {
+    names=new Vector();
+    types=new Vector();
+    temps=new Vector();
+  }
+
+  public void addTag(String type, String name) {
+    types.add(type);
+    names.add(name);
+  }
+
+  public int numTags() {
+    return names.size();
+  }
+
+  public void setTemp(int i, TempDescriptor tmp) {
+    if (i>=temps.size())
+      temps.setSize(i+1);
+    temps.set(i, tmp);
+  }
+
+  public TempDescriptor getTemp(int i) {
+    return (TempDescriptor) temps.get(i);
+  }
+
+  public String getName(int i) {
+    return (String) names.get(i);
+  }
+
+  public String getType(int i) {
+    return (String) types.get(i);
+  }
 }