//(c):Benja Fallenstein package gzz.view; import gzz.*; import gzz.vob.*; import java.awt.Dimension; /** A view showing a single cell. */ public interface CellView { void place(Cell c, VobScene vs, int coordsys, ViewContext context, float scale); /** Get the default size of a cell at a given scale. * Writes the result into a Dimension object. */ void getDefaultSize(float scale, Dimension writeInto); }