Package at.jku.ssw.fp.sect05_4.dsl
Class BVar
- java.lang.Object
-
- at.jku.ssw.fp.sect05_4.dsl.BVar
-
public class BVar extends Object
Variable with Boolean mutable value in a controller application.- Author:
- Herbert Praehofer
-
-
Field Summary
Fields Modifier and Type Field Description private boolean
value
Field for the mutable value of the variable.
-
Constructor Summary
Constructors Constructor Description BVar(boolean initial)
Constructor initializing the variable value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
get()
Gets the variable value.void
set(boolean value)
Sets the variable value.String
toString()
-