javap/src/main/java/sun/tools/javap/Hashtable.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 optimized replacement for Hashtable.
     8  *
     9  * @author Jaroslav Tulach <jtulach@netbeans.org>
    10  */
    11 final class Hashtable {
    12 
    13     Hashtable(int i) {
    14         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    15     }
    16 
    17     Hashtable(int i, double d) {
    18         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    19     }
    20 
    21     Hashtable() {
    22         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    23     }
    24 
    25     void put(Object keys, Object val) {
    26         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    27     }
    28 
    29     Object get(String mnem) {
    30         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    31     }
    32     
    33 }