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

Packages that use SciType
com.togethersoft.openapi.sci 

Uses of SciType in com.togethersoft.openapi.sci
 

Subinterfaces of SciType in com.togethersoft.openapi.sci
interface SciTypeExpression
           An expression which is a reference to a type.
 

Methods in com.togethersoft.openapi.sci that return SciType
SciTypeSciExpression.getType()
           Returns SciType instance for this expression.
SciTypeSciFunction.getReturnType()
           Gets the return type for this function.
SciTypeSciLanguageHelper.makePointerType(SciType type)
           Creates new SciType which represents pointer to specified type (if supported by language).
SciTypeSciLanguageHelper.makeReferenceType(SciType type)
           Creates new SciType which represents reference to specified type (if supported by language).
SciTypeSciVariable.getType()
           Returns a type of this variable.
 

Methods in com.togethersoft.openapi.sci with parameters of type SciType
booleanSciFunction.canSetReturnType(SciType type)
           Chechs whether the return type for this function can be set to the specified value.
voidSciFunction.setReturnType(SciType type)
           Sets the return type for this function to the specified value.
booleanSciLanguageHelper.isPrimitiveType(SciType type)
           Checks whethers the specified type is simple type.
SciTypeSciLanguageHelper.makePointerType(SciType type)
           Creates new SciType which represents pointer to specified type (if supported by language).
SciTypeSciLanguageHelper.makeReferenceType(SciType type)
           Creates new SciType which represents reference to specified type (if supported by language).
booleanSciVariable.canSetType(SciType type)
           Checks whether the specified type can be set as the type for this variable.
voidSciVariable.setType(SciType type)
           Sets the type for this variable to the specified type.