blob: 4d1a8c6f88016585ab6000db57ba83cb600df58c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/**
*
*/
package de.fhswf.in.inf.upnfx.util;
/**
* An interface for on UPN operator.
*
* @author $Author: $
* @version $Revision: $, $Date: $ UTC
*/
public interface Operator
{
/**
* Gets a stack of doubles and calculates a new value to be put on the
* stack.
*
* @param upnStack
* The UPN stack of the calculator.
*/
void eval(ObservableDoubleStack upnStack);
}
|