javap/src/main/java/sun/tools/javap/Vector.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 10 Nov 2012 19:01:28 +0100
branchjavap
changeset 149 32653a09f0db
child 150 945817561b9a
permissions -rw-r--r--
Compiling javap against the emul package. Still need impl for our copy of Hashtable and Vector
     1 /*
     2  * To change this template, choose Tools | Templates
     3  * and open the template in the editor.
     4  */
     5 package sun.tools.javap;
     6 
     7 /** A JavaScript ready replacement for java.util.Vector
     8  *
     9  * @author Jaroslav Tulach <jtulach@netbeans.org>
    10  */
    11 final class Vector {
    12     Vector() {
    13     }
    14 
    15     Vector(int i) {
    16         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    17     }
    18 
    19     void add(Object objectType) {
    20         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    21     }
    22     void addElement(Object obj) {
    23         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    24     }
    25 
    26     int size() {
    27         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    28     }
    29 
    30     void copyInto(String[] accflags) {
    31         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    32     }
    33 
    34     Object elementAt(int index) {
    35         throw new UnsupportedOperationException("Not supported yet.");
    36     }
    37 
    38     void setSize(int i) {
    39         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    40     }
    41 
    42     void setElementAt(String id, int token) {
    43         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    44     }
    45 }