Uses of Interface
org.eclipse.ocl.examples.modelregistry.environment.FileHandle

Packages that use FileHandle
org.eclipse.ocl.examples.modelregistry.eclipse   
org.eclipse.ocl.examples.modelregistry.environment   
org.eclipse.ocl.examples.modelregistry.model   
org.eclipse.ocl.examples.modelregistry.standalone   
org.eclipse.ocl.examples.modelregistry.ui.properties   
 

Uses of FileHandle in org.eclipse.ocl.examples.modelregistry.eclipse
 

Classes in org.eclipse.ocl.examples.modelregistry.eclipse that implement FileHandle
 class EclipseFileHandle
           
 class EclipseProjectHandle
           
 

Uses of FileHandle in org.eclipse.ocl.examples.modelregistry.environment
 

Subinterfaces of FileHandle in org.eclipse.ocl.examples.modelregistry.environment
 interface ProjectHandle
          The ProjectHandle denotes a special location with respect to which all other file handles belonging to a project are resolved.
 

Methods in org.eclipse.ocl.examples.modelregistry.environment that return FileHandle
 FileHandle ProjectHandle.getFileHandle(java.lang.String name)
          Return the FileHandle for the model located at name relative to the project, if the name does not start with a /, or with respect to the root if it does.
 FileHandle AbstractModelResolver.getHandle()
           
 FileHandle ModelResolver.getHandle()
           
 FileHandle FileHandle.getParentFileHandle()
          Return the handle of the parent of this handle.
 

Constructors in org.eclipse.ocl.examples.modelregistry.environment with parameters of type FileHandle
AbstractModelResolver(FileHandle handle)
           
 

Uses of FileHandle in org.eclipse.ocl.examples.modelregistry.model
 

Methods in org.eclipse.ocl.examples.modelregistry.model that return FileHandle
 FileHandle AccessorRegistry.getFileHandle()
           
 FileHandle FileHandleRegistry.getFileHandle()
           
 FileHandle Registration.getFileHandle()
           
 

Methods in org.eclipse.ocl.examples.modelregistry.model with parameters of type FileHandle
 FileHandleRegistry ProjectRegistry.add(FileHandle fileHandle)
           
 FileHandleRegistry ProjectRegistry.get(FileHandle fileHandle)
           
 FileHandleRegistry ProjectRegistry.getOrCreate(FileHandle fileHandle)
           
<A extends Accessor<A>>
Registration<A>
ProjectRegistry.getRegistration(FileHandle fileHandle, A accessor)
          Return the registration applicable to accessor in the context of fileHandle
<A extends Accessor<A>>
java.util.Collection<Registration<A>>
ProjectRegistry.getRegistrations(FileHandle fileHandle, Accessor.Namespace<A> namespace)
          Return all registrations applicable to accessorClass in the context of fileHandle, typically to treat all such registrations as a look-up path.
<A extends Accessor<A>>
org.eclipse.emf.common.util.URI
ProjectRegistry.getResolvedURI(FileHandle fileHandle, A accessor)
          Return the URI that resolves accessor within the context of fileHandle after resolution against the URI of the project.
<A extends Accessor<A>>
org.eclipse.emf.common.util.URI
ProjectRegistry.getURI(FileHandle fileHandle, A accessor)
          Return the URI that resolves accessor within the context of fileHandle.
 

Constructors in org.eclipse.ocl.examples.modelregistry.model with parameters of type FileHandle
FileHandleRegistry(ProjectRegistry parent, FileHandle fileHandle)
           
 

Uses of FileHandle in org.eclipse.ocl.examples.modelregistry.standalone
 

Classes in org.eclipse.ocl.examples.modelregistry.standalone that implement FileHandle
 class JavaFileHandle
           
 class JavaProjectHandle
           
 

Uses of FileHandle in org.eclipse.ocl.examples.modelregistry.ui.properties
 

Fields in org.eclipse.ocl.examples.modelregistry.ui.properties declared as FileHandle
protected  FileHandle ConfigurationBlock.fileHandle
           
 

Methods in org.eclipse.ocl.examples.modelregistry.ui.properties that return FileHandle
protected  FileHandle PropertyPage.getFileHandle()
           
 

Constructors in org.eclipse.ocl.examples.modelregistry.ui.properties with parameters of type FileHandle
ConfigurationBlock(FileHandle handle)
           
RegistrationDialog(org.eclipse.swt.widgets.Shell parent, AccessorRegistry<?> accessorRegistry, Registration<?> registration, java.util.List<Registration<?>> currentRegistrationModel, FileHandle fileHandle)