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 SciElement
           A generic element of a program (class, function, variable etc).
interface SciExpression
           SciExpression represents all posible 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 SciPackage
           A container of source code files (for Java language 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
          
interface SciTag
           SciTag interface provides a set of methods for accessing those RWI properties which are kept in a comment field as a JavaDoc-style "tag-value" pair.
 

Methods in com.togethersoft.openapi.sci that return SciObject
SciObjectSciContainer.paste(SciObject object, SciObject anchor, boolean before)
           Pastes the object into this containter.
SciObjectSciObject.copy()
           Copies this SciObject.
SciObjectSciObject.cut()
           Cuts this SciObject.
SciObjectSciObject.replace(SciObject newObject)
           Replaces this SciObject with the specified SciObject.
 

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.
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()