Package net.sourceforge.plantuml.jasic
Class Jasic.GotoStatement
java.lang.Object
net.sourceforge.plantuml.jasic.Jasic.GotoStatement
- All Implemented Interfaces:
Jasic.Statement
- Enclosing class:
- Jasic
A "goto" statement jumps execution to another place in the program.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
execute()
Statements implement this to actually perform whatever behavior the statement causes.
-
Constructor Details
-
GotoStatement
-
-
Method Details
-
execute
public void execute()Description copied from interface:Jasic.Statement
Statements implement this to actually perform whatever behavior the statement causes. "print" statements will display text here, "goto" statements will change the current statement, etc.- Specified by:
execute
in interfaceJasic.Statement
-