package it.cavallium.warppi.gui; public interface GraphicalElement { /** * Recompute element's dimension parameters, like width, * height, line or * length. */ public void recomputeDimensions(); /** * * @return Width of the element. */ public int getWidth(); /** * * @return Height of the element. */ public int getHeight(); /** * * @return Position of the vertical alignment line of the element, relative * to itself. */ public int getLine(); }