package gve.calc.formula;

public interface View {
	
Called by the model whenever the model has changed. The View should change its appearance accordingly.
public void updateView(Object with); public Object getModel(); }