/** * <copyright> * </copyright> * * */ package org.dresdenocl.language.ocl.resource.ocl; import java.util.Map; import java.util.Set; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EObject; public interface IOclReferenceCache { /** * Returns all EObjects of the given type. */ public Set<EObject> getObjects(EClass type); /** * Initializes the cache with the object tree that is rooted at <code>root</code>. * The cache allows to retrieve of objects of a given type or a given name. If the * cache was already initialized, no action is performed. */ public void initialize(EObject root); /** * Returns the map from object names to objects that was created when the cache * was initialized. */ public Map<String, Set<EObject>> getNameToObjectsMap(); /** * Clears the cache. */ public void clear(); }