view src/treecms/memory/NodeTable.java @ 27:aecc55e87143 default tip

test commit
author Shoshi TAMAKI <shoshi@cr.ie.u-ryukyu.ac.jp>
date Thu, 18 Aug 2011 17:37:03 +0900
parents
children
line wrap: on
line source

package treecms.memory;

import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import treecms.api.Node;

public class NodeTable<T extends Node> 
{
	private final Map<String,T> cache;
	
	public NodeTable(T _root)
	{
		cache = new ConcurrentHashMap<String,T>();
	}
}