Package net.sourceforge.plantuml.jasic
Class Jasic.AssignStatement
- java.lang.Object
-
- net.sourceforge.plantuml.jasic.Jasic.AssignStatement
-
- All Implemented Interfaces:
Jasic.Statement
- Enclosing class:
- Jasic
public class Jasic.AssignStatement extends Object implements Jasic.Statement
An assignment statement evaluates an expression and stores the result in a variable.
-
-
Constructor Summary
Constructors Constructor Description AssignStatement(String name, Jasic.Expression value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
execute()
Statements implement this to actually perform whatever behavior the statement causes.
-
-
-
Constructor Detail
-
AssignStatement
public AssignStatement(String name, Jasic.Expression value)
-
-
Method Detail
-
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
-
-