lib/browser/GraphBrowser/AbstractFontMetrics.java
author wenzelm
Sat, 15 Jun 2013 21:01:07 +0200
changeset 52408 fa2dc6c6c94f
parent 33686 8e33ca8832b1
permissions -rw-r--r--
updated operations on proof terms;

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