private HashMap<IHandle, Body> childrenCache;
public ErlModelCache() {
HashMap<IHandle, Body> _hashMap = new HashMap<IHandle, Body>(ErlModelCache.DEFAULT_PROJECT_SIZE);
this.projectCache = _hashMap;
ElementCache _elementCache = new ElementCache(ErlModelCache.DEFAULT_FILE_SIZE);
this.fileCache = _elementCache;
HashMap<IHandle, Body> _hashMap_1 = new HashMap<IHandle, Body>(ErlModelCache.DEFAULT_CHILDREN_SIZE);
this.childrenCache = _hashMap_1;
}