jaroslav@149: /* jaroslav@149: * To change this template, choose Tools | Templates jaroslav@149: * and open the template in the editor. jaroslav@149: */ jaroslav@149: package sun.tools.javap; jaroslav@149: jaroslav@149: /** A JavaScript ready replacement for java.util.Vector jaroslav@149: * jaroslav@149: * @author Jaroslav Tulach jaroslav@149: */ jaroslav@149: final class Vector { jaroslav@149: Vector() { jaroslav@149: } jaroslav@149: jaroslav@149: Vector(int i) { jaroslav@149: throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. jaroslav@149: } jaroslav@149: jaroslav@149: void add(Object objectType) { jaroslav@149: throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. jaroslav@149: } jaroslav@149: void addElement(Object obj) { jaroslav@149: throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. jaroslav@149: } jaroslav@149: jaroslav@149: int size() { jaroslav@149: throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. jaroslav@149: } jaroslav@149: jaroslav@149: void copyInto(String[] accflags) { jaroslav@149: throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. jaroslav@149: } jaroslav@149: jaroslav@149: Object elementAt(int index) { jaroslav@149: throw new UnsupportedOperationException("Not supported yet."); jaroslav@149: } jaroslav@149: jaroslav@149: void setSize(int i) { jaroslav@149: throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. jaroslav@149: } jaroslav@149: jaroslav@149: void setElementAt(String id, int token) { jaroslav@149: throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. jaroslav@149: } jaroslav@149: }