| author | Andreas Lochbihler |
| Tue, 14 Apr 2015 14:13:51 +0200 | |
| changeset 60066 | 14efa7f4ee7b |
| parent 33686 | 8e33ca8832b1 |
| permissions | -rw-r--r-- |
/*************************************************************************** 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(); }