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

Packages that use SciObject
com.togethersoft.openapi.sci 
com.togethersoft.openapi.sci.enum 

Uses of SciObject in com.togethersoft.openapi.sci
 

Subinterfaces of SciObject in com.togethersoft.openapi.sci
interface SciComment
          Represents a comment in the source code.
interface SciElement
          A generic element of a program (class, function, variable,
and so on).
interface SciExpression
          SciExpression represents all possible types of expressions in a source code.
interface SciJavaImport
          SciJavaImport represents a Java language 'import' command.
interface SciMemberDefinition
          Methods for accessing a member's definition in C++ language.
interface SciNetAttribute
          Represents .NET assembly attribute.
interface SciNetAttributeSection
          Represents .NET assembly attributes section.
interface SciPackage
          A container of source code files (for the Java language, it represents a Java package).
interface SciReference
          SciReference interface provides methods for working with references.
interface SciScope
          A generic type of source code container.
interface SciStatement
          A statement in the source code.
interface SciTag
          SciTag interface provides a set of methods for accessing those RWI properties
that are kept in a comment field as a Javadoc-style "tag-value" pair.
 

Methods in com.togethersoft.openapi.sci that return SciObject
SciObjectSciCodeBlock.getOwner()
          Provides access object which this code block belongs to.
SciObjectSciContainer.paste(SciObject object, SciObject anchor, boolean before)
          Pastes the object into this containter.
SciObjectSciExpression.getOwner()
          Returns an object that owns this expression.
SciObjectSciFile.getObjectAtPosition(int offset)
          Reserved not implemeted yet.
SciObjectSciObject.copy()
          Copies this SciObject.
SciObjectSciObject.cut()
          Cuts this SciObject.
SciObjectSciObject.replace(SciObject newObject)
          Replaces this SciObject with the specified SciObject.
SciObjectSciParameter.getOwner()
          Provides access object which this parameter belongs to.
SciObjectSciParametrizedCompoundStatement.getParameterObject()
          Provides access to a parameter of the statement.
SciObjectSciReference.getOwner()
          Returns the owner of this reference.
 

Methods in com.togethersoft.openapi.sci with parameters of type SciObject
booleanSciContainer.canPaste(SciObject object, SciObject anchor, boolean before)
          Returns true if the object can be pasted into this container in the specified place,
false otherwise.
SciObjectSciContainer.paste(SciObject object, SciObject anchor, boolean before)
          Pastes the object into this containter.
SciCommentSciLanguageHelper.getComment(SciObject object, boolean before)
          
SciNetAttributeSectionSciNetHelper.addAttributeSection(SciObject anchor, boolean before)
          
booleanSciNetHelper.canAddAttributeSection(SciObject anchor, boolean before)
          
SciNetAttributeSectionSciNetHelper.getAttributeSection(SciObject anchor, boolean before)
          
booleanSciObject.canReplace(SciObject newObject)
          Checks whether it is possible to replace this SciObject with the specified
SciObject.
SciObjectSciObject.replace(SciObject newObject)
          Replaces this SciObject with the specified SciObject.
 

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

Methods in com.togethersoft.openapi.sci.enum that return SciObject
SciObjectSciObjectEnumeration.nextSciObject()