lib/browser/GraphBrowser/AbstractFontMetrics.java
author blanchet
Thu, 22 Aug 2013 12:16:56 +0200
changeset 53141 d27e99a6a679
parent 33686 8e33ca8832b1
permissions -rw-r--r--
take chained and proximate facts into consideration when computing MaSh features

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