Interface JavaBlockDescr
-
- All Known Subinterfaces:
JavaContainerBlockDescr
- All Known Implementing Classes:
AbstractJavaBlockDescr,AbstractJavaContainerBlockDescr,JavaCatchBlockDescr,JavaElseBlockDescr,JavaFinalBlockDescr,JavaForBlockDescr,JavaIfBlockDescr,JavaInterfacePointsDescr,JavaModifyBlockDescr,JavaRootBlockDescr,JavaStatementBlockDescr,JavaThrowBlockDescr,JavaTryBlockDescr,JavaWhileBlockDescr
public interface JavaBlockDescr
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classJavaBlockDescr.BlockType
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetEnd()Map<String,Class<?>>getInputs()List<JavaLocalDeclarationDescr>getInScopeLocalVars()Returns the list of in-code, declared variables that are available in the scope of this blockintgetStart()StringgetTargetExpression()JavaBlockDescr.BlockTypegetType()voidsetInputs(Map<String,Class<?>> variables)voidsetInScopeLocalVars(List<JavaLocalDeclarationDescr> inScopeLocalVars)Sets the list of in-code, declared variables that are available in the scope of this blockvoidsetTargetExpression(String str)
-
-
-
Method Detail
-
getType
JavaBlockDescr.BlockType getType()
-
getStart
int getStart()
-
getEnd
int getEnd()
-
getTargetExpression
String getTargetExpression()
-
setTargetExpression
void setTargetExpression(String str)
-
getInScopeLocalVars
List<JavaLocalDeclarationDescr> getInScopeLocalVars()
Returns the list of in-code, declared variables that are available in the scope of this block- Returns:
-
setInScopeLocalVars
void setInScopeLocalVars(List<JavaLocalDeclarationDescr> inScopeLocalVars)
Sets the list of in-code, declared variables that are available in the scope of this block
-
-