lib/browser/GraphBrowser/AbstractFontMetrics.java
author wenzelm
Tue, 29 Apr 2014 21:11:24 +0200
changeset 56793 d5ab6a8799ce
parent 33686 8e33ca8832b1
permissions -rw-r--r--
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;

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