Package gnu.trove

Examples of gnu.trove.THashMap


    }
  }

  public void putClientProperty(@NonNls String key, Object value){
    if(myUserMap==null){
      myUserMap=new THashMap(1);
    }
    Object oldValue = myUserMap.put(key,value);
    myChangeSupport.firePropertyChange(key, oldValue, value);
  }
View Full Code Here

TOP

Related Classes of gnu.trove.THashMap

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.