Example usage for org.apache.commons.collections ReferenceMap ReferenceMap

List of usage examples for org.apache.commons.collections ReferenceMap ReferenceMap

Introduction

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

Prototype

public ReferenceMap(int keyType, int valueType) 

Source Link

Document

Constructs a new ReferenceMap that will use the specified types of references.

Usage

From source file:com.silverwrist.venice.community.CommunityManager.java

public CommunityManager() {
    m_id_to_comm = new ReferenceMap(ReferenceMap.HARD, ReferenceMap.SOFT);
    m_alias_to_comm = new ReferenceMap(ReferenceMap.HARD, ReferenceMap.SOFT);
    m_qname_to_service = new Hashtable();
    m_index_to_service = new Hashtable();

}