Example usage for org.apache.commons.collections.map IdentityMap IdentityMap

List of usage examples for org.apache.commons.collections.map IdentityMap IdentityMap

Introduction

In this page you can find the example usage for org.apache.commons.collections.map IdentityMap IdentityMap.

Prototype

public IdentityMap() 

Source Link

Document

Constructs a new empty map with default size and load factor.

Usage

From source file:edu.syr.pcpratts.rootbeer.runtime.ReadOnlyAnalyzer.java

public ReadOnlyAnalyzer() {
    m_Map = new IdentityMap();
}

From source file:MapHeavenV1.java

private void createMaps() {
    cIMap = new CaseInsensitiveMap();
    identMap = new IdentityMap();
    lazyMap = LazyMap.decorate(new HashMap(), FactoryUtils.instantiateFactory(StringBuffer.class));
}

From source file:com.aurel.track.persist.BaseTLocked.java

/**
 * Creates a TLockedBean with the contents of this object
   * This also creates beans for cached related objects, if they exist
   * @return a TLockedBean with the contents of this object
 *//* w  w  w  . jav  a2 s  .c  om*/
public TLockedBean getBean() {
    return getBean(new IdentityMap());
}

From source file:com.aurel.track.persist.BaseTLocked.java

/**
 * Creates an instance of TLocked with the contents
 * of a TLockedBean./*from  ww  w . java 2  s .c o  m*/
 * This behaviour could have also been achieved using a constructor,
 * however as this class is abstract no constructors are allowed
 * @param bean the TLockedBean which contents are used to create
 *        the resulting class
 * @return an instance of TLocked with the contents of bean
 */
public static TLocked createTLocked(TLockedBean bean) throws TorqueException {
    return createTLocked(bean, new IdentityMap());
}

From source file:com.aurel.track.persist.BaseTLoggingLevel.java

/**
 * Creates a TLoggingLevelBean with the contents of this object
 * This also creates beans for cached related objects, if they exist
 * @return a TLoggingLevelBean with the contents of this object
 *//*from   ww  w. j av  a 2 s  .co m*/
public TLoggingLevelBean getBean() {
    return getBean(new IdentityMap());
}

From source file:com.aurel.track.persist.BaseTGeneralParam.java

/**
 * Creates a TGeneralParamBean with the contents of this object
 * This also creates beans for cached related objects, if they exist
 * @return a TGeneralParamBean with the contents of this object
 *///from w  ww  .  j  a  v  a  2 s  . c om
public TGeneralParamBean getBean() {
    return getBean(new IdentityMap());
}

From source file:com.aurel.track.persist.BaseTGlobalCssStyle.java

/**
 * Creates a TGlobalCssStyleBean with the contents of this object
 * This also creates beans for cached related objects, if they exist
 * @return a TGlobalCssStyleBean with the contents of this object
 *//* w  w w.j ava 2s.  c  o m*/
public TGlobalCssStyleBean getBean() {
    return getBean(new IdentityMap());
}

From source file:com.aurel.track.persist.BaseTLoggingLevel.java

/**
 * Creates an instance of TLoggingLevel with the contents
 * of a TLoggingLevelBean.//from ww  w .j  a  va  2  s  .  co m
 * This behaviour could have also been achieved using a constructor,
 * however as this class is abstract no constructors are allowed
 * @param bean the TLoggingLevelBean which contents are used to create
 *        the resulting class
 * @return an instance of TLoggingLevel with the contents of bean
 */
public static TLoggingLevel createTLoggingLevel(TLoggingLevelBean bean) throws TorqueException {
    return createTLoggingLevel(bean, new IdentityMap());
}

From source file:com.aurel.track.persist.BaseTGeneralParam.java

/**
 * Creates an instance of TGeneralParam with the contents
 * of a TGeneralParamBean./*  ww  w.ja v  a  2s .  c  om*/
 * This behaviour could have also been achieved using a constructor,
 * however as this class is abstract no constructors are allowed
 * @param bean the TGeneralParamBean which contents are used to create
 *        the resulting class
 * @return an instance of TGeneralParam with the contents of bean
 */
public static TGeneralParam createTGeneralParam(TGeneralParamBean bean) throws TorqueException {
    return createTGeneralParam(bean, new IdentityMap());
}

From source file:com.aurel.track.persist.BaseTGlobalCssStyle.java

/**
 * Creates an instance of TGlobalCssStyle with the contents
 * of a TGlobalCssStyleBean.// ww  w .j  a  va2 s .c  o m
 * This behaviour could have also been achieved using a constructor,
 * however as this class is abstract no constructors are allowed
 * @param bean the TGlobalCssStyleBean which contents are used to create
 *        the resulting class
 * @return an instance of TGlobalCssStyle with the contents of bean
 */
public static TGlobalCssStyle createTGlobalCssStyle(TGlobalCssStyleBean bean) throws TorqueException {
    return createTGlobalCssStyle(bean, new IdentityMap());
}