javap/src/main/java/sun/tools/javap/Hashtable.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/Hashtable.java	Sat Nov 10 19:01:28 2012 +0100
     1.3 @@ -0,0 +1,33 @@
     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 optimized replacement for Hashtable.
    1.11 + *
    1.12 + * @author Jaroslav Tulach <jtulach@netbeans.org>
    1.13 + */
    1.14 +final class Hashtable {
    1.15 +
    1.16 +    Hashtable(int i) {
    1.17 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.18 +    }
    1.19 +
    1.20 +    Hashtable(int i, double d) {
    1.21 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.22 +    }
    1.23 +
    1.24 +    Hashtable() {
    1.25 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.26 +    }
    1.27 +
    1.28 +    void put(Object keys, Object val) {
    1.29 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.30 +    }
    1.31 +
    1.32 +    Object get(String mnem) {
    1.33 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.34 +    }
    1.35 +    
    1.36 +}