lib/browser/GraphBrowser/AbstractFontMetrics.java
author bulwahn
Tue, 08 Feb 2011 08:58:24 +0100
changeset 41722 9575694d2da5
parent 33686 8e33ca8832b1
permissions -rw-r--r--
improving sum type and option type term constructions for correct presentation in Smallcheck

/***************************************************************************
  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();
}