Interface FmiBuilder.TryScope<AST>
-
- All Superinterfaces:
FmiBuilder.ScopeElement<AST>
- Enclosing interface:
- FmiBuilder<AST,B,E,SETTINGS>
public static interface FmiBuilder.TryScope<AST> extends FmiBuilder.ScopeElement<AST>
Try finally scope, default scope is body
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FmiBuilder.Scope<AST>enter()Switch to body scopeFmiBuilder.Scope<AST>enterFinally()Switch to finally scopeFmiBuilder.Scope<AST>getBody()FmiBuilder.Scope<AST>getFinallyBody()FmiBuilder.Scope<AST>leave()-
Methods inherited from interface org.intocps.maestro.framework.fmi2.api.FmiBuilder.ScopeElement
findParent, getDeclaration, parent
-
-
-
-
Method Detail
-
enter
FmiBuilder.Scope<AST> enter()
Switch to body scope- Returns:
-
enterFinally
FmiBuilder.Scope<AST> enterFinally()
Switch to finally scope- Returns:
-
leave
FmiBuilder.Scope<AST> leave()
-
getBody
FmiBuilder.Scope<AST> getBody()
-
getFinallyBody
FmiBuilder.Scope<AST> getFinallyBody()
-
-