Uses of Interface
org.eclipse.higgins.idas.api.IEntity

Packages that use IEntity
org.eclipse.higgins.idas.api Defines the core set of interfaces for IdAS. 
 

Uses of IEntity in org.eclipse.higgins.idas.api
 

Methods in org.eclipse.higgins.idas.api that return IEntity
 IEntity IContext.addEntity(URI entityType, String entityID)
          Creates a new Entity for this Context.
This call is typically followed by one or more calls to IHasAttributes.addAttribute(java.net.URI) on the returned IEntity Note: This operation is only applied to any backing data store after IContext.applyUpdates()
 IEntity IContext.addEntity(IEntity copyFrom)
          Creates a new Entity for this Context by copying the data from the passed entity
Note: This operation is only applied to any backing data store after IContext.applyUpdates() is called.
 IEntity IContext.getEntity(String entityID)
          This is the same as passing null as the attrSelectionList in IContext.getEntity(String, Iterator)
 IEntity IContext.getEntity(String entityID, Iterator attrSelectionList)
          Returns the Entity matching the specified entityID.
 

Methods in org.eclipse.higgins.idas.api with parameters of type IEntity
 IEntity IContext.addEntity(IEntity copyFrom)
          Creates a new Entity for this Context by copying the data from the passed entity
Note: This operation is only applied to any backing data store after IContext.applyUpdates() is called.