lib/browser/GraphBrowser/AbstractFontMetrics.java
author haftmann
Mon, 10 May 2010 13:58:18 +0200
changeset 36798 3981db162131
parent 33686 8e33ca8832b1
permissions -rw-r--r--
less complex organization of cooper source code

/***************************************************************************
  Title:      GraphBrowser/AWTFontMetrics.java
  Author:     Gerwin Klein, TU Muenchen

  AbstractFontMetrics avoids dependency on java.awt.FontMetrics in 
  batch mode.
  
***************************************************************************/

package GraphBrowser;

public interface AbstractFontMetrics {
  public int stringWidth(String str);
  public int getAscent();
  public int getDescent();
}