Uses of Class
com.togethersoft.openapi.model.elements.Entity

Packages that use Entity
com.togethersoft.openapi.model.elements 
com.togethersoft.openapi.model.enum 
com.togethersoft.openapi.model.extension 
com.togethersoft.openapi.model.util 
com.togethersoft.openapi.modelnavigator 

Uses of Entity in com.togethersoft.openapi.model.elements
 

Subinterfaces of Entity in com.togethersoft.openapi.model.elements
interface Model
          
 

Methods in com.togethersoft.openapi.model.elements that return Entity
EntityContainer.createChildLink(String shapeType)
          
EntityContainer.createChildNode(String shapeType)
          
EntityElement.getParent()
          
 

Uses of Entity in com.togethersoft.openapi.model.enum
 

Methods in com.togethersoft.openapi.model.enum that return Entity
EntityEntityEnumeration.next()
          
 

Uses of Entity in com.togethersoft.openapi.model.extension
 

Methods in com.togethersoft.openapi.model.extension with parameters of type Entity
StringEnumerationChildrenProvider.children(Entity parent)
          Provider should return enumeration of unique names of the child elements
of the given parent entity.
booleanChildrenProvider.isApplicable(Entity parent)
          Provider should return true from this method if it knows
the given parent and there is a possibility that provider
will return enumeration of child elements unique names
booleanLinkProvider.canSetParticipant(Entity link, Element participant, String oldRole, String newRole)
          See description of
canSetParticipant(Entity link, String role,Element oldParticipant,Element newParticipant)
booleanLinkProvider.canSetParticipant(Entity link, String role, Element oldParticipant, Element newParticipant)
          This method is called, when canSetParticipant method of Link was invoked
or before calling of setParticipant method.
booleanLinkProvider.isApplicable(Entity link)
          It is guaranteed that before calling any other methods of the provider,
this method was invoked and result value was true.
StringEnumerationLinkProvider.participantRoles(Entity link)
          This method is used, when participantRoles of Entity was called.
StringEnumerationLinkProvider.participants(Entity link, String role)
          This method is used, when participants of Entity was called.
voidLinkProvider.setParticipant(Entity link, Element participant, String oldRole, String newRole)
          This method is called when role of participant must be changed.
voidLinkProvider.setParticipant(Entity link, String role, Element oldParticipant, Element newParticipant)
          This method is called when one participant must be changed with another.
booleanPasteProvider.canPaste(Entity container, Element element, Element anchor, boolean before)
          This method is called when canPaste method of Entity was called
or right before calling paste method of this provider.
booleanPasteProvider.isApplicable(Entity container)
          This method is called before calling any other methods.
StringPasteProvider.paste(Entity container, Element element, Element createdElement, Element anchor, boolean before)
          Provider must "paste" specified element into container.
booleanUniqueNameProvider.canCreateUniqueName(Entity parent, String shapeType)
          Provider should return true in this method if it can
create an element whose parent is parent and shape type is
shapeType.
StringUniqueNameProvider.createUniqueName(Entity parent, String shapeType)
          Provider should return unique name of the new element whose
parent is parent and shape type is shapeType.
 

Uses of Entity in com.togethersoft.openapi.model.util
 

Methods in com.togethersoft.openapi.model.util with parameters of type Entity
booleanChildrenProviderAdapter.canCreateUniqueName(Entity parent, String shapeType)
          
abstract StringEnumerationChildrenProviderAdapter.children(Entity parent)
          This method should return enumeration of unique names of elements which
are children of the given entity.
StringChildrenProviderAdapter.createUniqueName(Entity parent, String shapeType)
          
abstract booleanChildrenProviderAdapter.isApplicable(Entity parent)
          This method should return true if this provider can
return children of the given entity
 

Uses of Entity in com.togethersoft.openapi.modelnavigator
 

Methods in com.togethersoft.openapi.modelnavigator that return Entity
Entity[]NavigatorService.getRoots()
          Returns an array of current navigator root entities.
 

Methods in com.togethersoft.openapi.modelnavigator with parameters of type Entity
voidNavigatorService.addRoot(Entity root)
          Adds model Entity as root node.
voidNavigatorService.removeRoot(Entity root)
          Removes root node for given Entity.