com.rychlik.calculator
Class StackMachine.Function
java.lang.Object
|
+--com.rychlik.calculator.StackMachine.SymbolTableEntry
|
+--com.rychlik.calculator.StackMachine.Function
- All Implemented Interfaces:
- java.io.Serializable
- Enclosing class:
- StackMachine
- public class StackMachine.Function
- extends StackMachine.SymbolTableEntry
Describe class Function here.
- See Also:
- Serialized Form
Field Summary |
int |
argbase
Describe variable argbase here. |
int |
nargs
Describe variable nargs here. |
int |
progbase
Describe variable progbase here. |
Constructor Summary |
StackMachine.Function(java.lang.String name,
int progbase,
int argbase,
int nargs)
Creates a new Function instance. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
progbase
public final int progbase
- Describe variable
progbase here.
argbase
public final int argbase
- Describe variable
argbase here.
nargs
public final int nargs
- Describe variable
nargs here.
StackMachine.Function
public StackMachine.Function(java.lang.String name,
int progbase,
int argbase,
int nargs)
- Creates a new
Function instance.
- Parameters:
name - a String valueprogbase - an int valueargbase - an int valuenargs - an int value
|