javap/src/main/java/sun/tools/javap/Vector.java
branchjavap
changeset 149 32653a09f0db
child 150 945817561b9a
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/javap/src/main/java/sun/tools/javap/Vector.java	Sat Nov 10 19:01:28 2012 +0100
     1.3 @@ -0,0 +1,45 @@
     1.4 +/*
     1.5 + * To change this template, choose Tools | Templates
     1.6 + * and open the template in the editor.
     1.7 + */
     1.8 +package sun.tools.javap;
     1.9 +
    1.10 +/** A JavaScript ready replacement for java.util.Vector
    1.11 + *
    1.12 + * @author Jaroslav Tulach <jtulach@netbeans.org>
    1.13 + */
    1.14 +final class Vector {
    1.15 +    Vector() {
    1.16 +    }
    1.17 +
    1.18 +    Vector(int i) {
    1.19 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.20 +    }
    1.21 +
    1.22 +    void add(Object objectType) {
    1.23 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.24 +    }
    1.25 +    void addElement(Object obj) {
    1.26 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.27 +    }
    1.28 +
    1.29 +    int size() {
    1.30 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.31 +    }
    1.32 +
    1.33 +    void copyInto(String[] accflags) {
    1.34 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.35 +    }
    1.36 +
    1.37 +    Object elementAt(int index) {
    1.38 +        throw new UnsupportedOperationException("Not supported yet.");
    1.39 +    }
    1.40 +
    1.41 +    void setSize(int i) {
    1.42 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.43 +    }
    1.44 +
    1.45 +    void setElementAt(String id, int token) {
    1.46 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.47 +    }
    1.48 +}