Uses of Class
com.togethersoft.openapi.sci.SciElement

Packages that use SciElement
com.togethersoft.openapi.sci 
com.togethersoft.openapi.sci.enum 
com.togethersoft.openapi.sci.pattern 
com.togethersoft.openapi.sci.policy 
com.togethersoft.openapi.sci.visitor 

Uses of SciElement in com.togethersoft.openapi.sci
 

Subinterfaces of SciElement in com.togethersoft.openapi.sci
interface SciClass
           A source code class (interface).
interface SciFunction
           A function in source code.
interface SciInheritance
           SciInheritance is a reference to the class (interface) whose name appeared in the extends/implements section.
interface SciInitializer
           Represents a class or an instance initializer (Java only).
interface SciMember
           SciMember provides a set of methods for accessing information about members(attributes and operations) of classes.
interface SciThrowSpecifier
           SciThrowSpecifier is a reference to the exception class whose name appeared in the "throws" (Java) or "throw()" (C++) clause.
interface SciVariable
           Represents source code variable (parameter, attribute, local variable etc.).
 

Methods in com.togethersoft.openapi.sci that return SciElement
SciElementSciModel.findElement(String uniqueName)
           Finds an element by its unique name.
SciElementSciReference.getReferencedElement()
           Returns an SciElement this reference points to.
 

Methods in com.togethersoft.openapi.sci with parameters of type SciElement
voidSciElement.visitReferences(SciReferenceVisitor visitor, SciElement referencedElement)
           In this element, makes a specified visitor perform certain actions upon all references to the specified element.
voidSciExpression.visitReferences(SciReferenceVisitor visitor, SciElement referencedElement)
           In this expression, makes a specified visitor perform certain actions upon all references to the specified element.
StringSciLanguageHelper.getProperty(SciElement element, String key)
           Provides access to language specific properties of elements.
StringSciLanguageHelper.setProperty(SciElement element, String key, String value)
           Provides access to language specific properties of elements.
booleanSciReference.canSetReferencedElement(SciElement element)
           Checks whether the specified element can be set as a target for this reference.
voidSciReference.setReferencedElement(SciElement element)
           Sets another SciElement for this reference to point to.
voidSciScope.visitReferences(SciReferenceVisitor visitor, SciElement referencedElement)
          
voidSciStatement.visitReferences(SciReferenceVisitor visitor, SciElement referencedElement)
          
 

Uses of SciElement in com.togethersoft.openapi.sci.enum
 

Methods in com.togethersoft.openapi.sci.enum that return SciElement
SciElementSciElementEnumeration.nextSciElement()
          
 

Uses of SciElement in com.togethersoft.openapi.sci.pattern
 

Methods in com.togethersoft.openapi.sci.pattern that return SciElement
SciElementSciPatternManager.applyPatternToLink(SciPattern pattern, SciElement sciElement, SciClass sciSource, SciClass sciDestination)
          
SciElementSciPatternManager.createLinkByPattern(SciPattern pattern, SciClass sourceClass, SciClass destinationClass)
          
 

Methods in com.togethersoft.openapi.sci.pattern with parameters of type SciElement
SciElementSciPatternManager.applyPatternToLink(SciPattern pattern, SciElement sciElement, SciClass sciSource, SciClass sciDestination)
          
booleanSciPatternManager.canApplyPatternToLink(SciPattern pattern, SciElement sciElement, SciClass sciSource, SciClass sciDestination)
          
 

Uses of SciElement in com.togethersoft.openapi.sci.policy
 

Fields in com.togethersoft.openapi.sci.policy declared as SciElement
final SciElementSciPasteOrderPolicy.Anchor.anchorElement
          
 

Constructors in com.togethersoft.openapi.sci.policy with parameters of type SciElement
SciPasteOrderPolicy.Anchor.Anchor(SciElement anchorElement, boolean before)
          
 

Uses of SciElement in com.togethersoft.openapi.sci.visitor
 

Methods in com.togethersoft.openapi.sci.visitor with parameters of type SciElement
ObjectSciElementVisitorAdapter.visitElement(SciElement sciElement)