<MyMathCalcPlugin Project>/src/org/myorg/mymathcalcplugin/ComputationPerformer.java
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package org.myorg.mymathcalcplugin;

/**
 *
 */
public interface ComputationPerformer {

    public void reset();

    public void addValue(Object value);

    public Object getResult();

    public String getResultDisplayMessage();

    public String getProgressName();

    public Class[] getSupportedFieldCapabilities();

}