Package net.sourceforge.uiq3.fx603p
Class Owned_Operation
- java.lang.Object
-
- net.sourceforge.uiq3.fx603p.Owned_Operation
-
- All Implemented Interfaces:
IClear
,IOperation
,IOwned_Operation
- Direct Known Subclasses:
Keyboard
,Programmable_Operation
abstract class Owned_Operation extends Object implements IOwned_Operation
Almost all operations are owned by the calculator and need access to the owner.- Author:
- "Martin Krischik" «krischik@users.sourceforge.net»
-
-
Field Summary
Fields Modifier and Type Field Description protected @NotNull Calculator
Owner
Owner instance of this Operationprivate static String
TAG
class logger tag.
-
Constructor Summary
Constructors Constructor Description Owned_Operation(@NotNull Calculator Owner)
Create operation and attach to owning calculator.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
µReset()
reset indirect and token planestatic void
µReset(@NotNull Calculator Owner)
reset indirect and token plane@NotNull String
toString()
Operation as java string-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.sourceforge.uiq3.calculator.IOperation
Execute
-
-
-
-
Field Detail
-
TAG
private static final String TAG
class logger tag.
-
Owner
@NotNull protected final @NotNull Calculator Owner
Owner instance of this Operation
-
-
Constructor Detail
-
Owned_Operation
Owned_Operation(@NotNull @NotNull Calculator Owner)
Create operation and attach to owning calculator.- Parameters:
Owner
- Calculator which will call this Opcode
-
-
Method Detail
-
µReset
public static void µReset(@NotNull @NotNull Calculator Owner)
reset indirect and token plane
-
toString
@NotNull public @NotNull String toString()
Operation as java string
-
µReset
public final void µReset()
reset indirect and token plane
- Specified by:
µReset
in interfaceIOwned_Operation
-
-