lib/browser/GraphBrowser/AbstractFontMetrics.java
author blanchet
Thu, 22 Aug 2013 23:03:21 +0200
changeset 53148 c898409d8630
parent 33686 8e33ca8832b1
permissions -rw-r--r--
fixed subtle bug with "take" + thread overlord through

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