lib/browser/GraphBrowser/AbstractFontMetrics.java
author wenzelm
Fri, 28 Sep 2012 11:46:57 +0200
changeset 49640 47431a27fefe
parent 33686 8e33ca8832b1
permissions -rw-r--r--
updated keywords using proper "isabelle update_keywords";

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