2003/09/23 08:25:00
[org.ibex.core.git] / src / org / xwt / util / Vec.java
index 70be7d9..723314e 100644 (file)
@@ -17,6 +17,7 @@ public final class Vec implements Serializable {
     
     public Vec() { this(10); }
     public Vec(int i) { store = new Object[i]; }
+    public Vec(int i, Object[] store) { size = i; this.store = store; }
     
     private void grow() { grow(store.length * 2); }
     private void grow(int newsize) {