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

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

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

Subinterfaces of Element in com.togethersoft.openapi.model.elements
interface Entity
          Entity is a general item of model.
interface ReferenceCollection
          This interface defines behaviour of one species of Element --
ReferenceCollection.
 

Fields in com.togethersoft.openapi.model.elements declared as Element
final static ElementLink.lnkIElement
          
 

Methods in com.togethersoft.openapi.model.elements that return Element
ElementContainer.paste(Element element, Element anchor, boolean before)
          
ElementContainer.paste(Element element)
          
ElementElement.copy()
          Makes a copy of this element.
ElementElement.cut()
          
ElementModel.findElement(String uniqueName)
          
 

Methods in com.togethersoft.openapi.model.elements with parameters of type Element
booleanContainer.canPaste(Element element, Element anchor, boolean before)
          
booleanContainer.canPaste(Element element)
          
ElementContainer.paste(Element element, Element anchor, boolean before)
          
ElementContainer.paste(Element element)
          
booleanLink.canSetParticipant(Element participant, String oldRole, String newRole)
          
booleanLink.canSetParticipant(String role, Element oldParticipant, Element newParticipant)
          
voidLink.setParticipant(Element participant, String oldRole, String newRole)
          Changes role of participant.
voidLink.setParticipant(String role, Element oldParticipant, Element newParticipant)
          Changes one of participants to another, keeping role the same.
ReferenceReferenceCollection.addReference(Element element)
          
booleanReferenceCollection.canAddReference(Element element)
          
 

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

Methods in com.togethersoft.openapi.model.enum that return Element
ElementElementEnumeration.next()
          
 

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

Methods in com.togethersoft.openapi.model.extension with parameters of type Element
voidContentProvider.bind(Element element)
          This method is invoked when another Element of model was instantiated.
booleanContentProvider.isApplicable(Element element)
          This method is called whenever any other method of this provider is to be invoked.
booleanCopyProvider.canCopy(Element element)
          This method is called when canCopy method of Element was invoked or
right before model is going to call copy method of provider.
StringCopyProvider.copy(Element element, Element createdElement)
          This method must copy element and produce copied element.
booleanCopyProvider.isApplicable(Element element)
          Call of this method is guaranteed to precede call of any other method of this provider.
booleanCutProvider.canCut(Element element)
          This method is called when canCut method of Element was invoked or
right before model is going to call cut method of provider.
StringCutProvider.cut(Element element, Element cuttedElement)
          This method must cut element and produce cutted element.
booleanCutProvider.isApplicable(Element element)
          Call of this method is guaranteed to precede call of any other method of this provider.
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.
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.
StringParentProvider.getParent(Element child)
          Provider should return UIN of the parent element for child,
if it can.
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.
StringPasteProvider.paste(Entity container, Element element, Element createdElement, Element anchor, boolean before)
          Provider must "paste" specified element into container.
ReferenceReferenceProvider.addReference(ReferenceCollection collection, Reference createdReference, Element element)
          This method is called, when addReference of ReferenceCollection was called.
booleanReferenceProvider.canAddReference(ReferenceCollection collection, Element element)
          This method is called, when user invoked canAddReference opertaion of
ReferenceCollection or right before invoking of addReference
method.
 

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

Methods in com.togethersoft.openapi.model.util that return Element
static ElementURLFactory.getElement(URL url)
          
 

Methods in com.togethersoft.openapi.model.util with parameters of type Element
static URLURLFactory.createElementURL(Element element)
          
 

Uses of Element in com.togethersoft.openapi.modelnavigator
 

Methods in com.togethersoft.openapi.modelnavigator with parameters of type Element
voidNavigatorService.expandPathToElement(Element element)
          Expands all the parents of node representing given Element
to make it visible.
voidNavigatorService.startInplaceEditing(Element element)
          Starts inplace editing of a node representing given model Element
 

Uses of Element in com.togethersoft.openapi.modelselection
 

Methods in com.togethersoft.openapi.modelselection with parameters of type Element
voidSelectionService.addSelectionElement(Element el)
          
booleanSelectionService.isSelectedElement(Element el)
          Returns true if the specified element is selected.
voidSelectionService.removeSelectionElement(Element el)