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

Packages that use SciCodeBlock
com.togethersoft.openapi.sci 

Uses of SciCodeBlock in com.togethersoft.openapi.sci
 

Methods in com.togethersoft.openapi.sci that return SciCodeBlock
SciCodeBlockSciCompoundStatement.getCodeBlock()
          Returns code block of compound statement.
SciCodeBlockSciFactory.newCodeBlock()
          Creates a new empty SciCodeBlock.
SciCodeBlockSciFunction.getBody()
          Returns code block with the body of this function.
SciCodeBlockSciGenericFactory.newCodeBlock(String text, String formatStyle)
          
SciCodeBlockSciGenericFactory.newCodeBlock(String text)
          Creates a new SciCodeBlock basing on the specified string.
SciCodeBlockSciIfStatement.getElseCodeBlock()
          
SciCodeBlockSciIfStatement.getThenCodeBlock()
          
SciCodeBlockSciInitializer.getBody()
          Returns a code block with the body of this function.
SciCodeBlockSciLoopStatement.getCodeBlock()
          
SciCodeBlockSciStatement.getContainingBlock()
          
 

Methods in com.togethersoft.openapi.sci with parameters of type SciCodeBlock
booleanSciFunction.canSetBody(SciCodeBlock body)
          Checks whether it is possible to set the body of this function to the specified code block value.
voidSciFunction.setBody(SciCodeBlock body)
          Sets the body of this function to the specified code block value.
booleanSciInitializer.canSetBody(SciCodeBlock body)
          Checks whether it is possible to set the body of this function to the specified code block value.
voidSciInitializer.setBody(SciCodeBlock body)
          Sets the body of this function to the specified code block value.