diff options
author | jtauber <jtauber@unknown> | 1999-11-22 02:32:21 +0000 |
---|---|---|
committer | jtauber <jtauber@unknown> | 1999-11-22 02:32:21 +0000 |
commit | 8db42fcc7af041a77223683e11e053ffb82c4847 (patch) | |
tree | 81748e94daccc781c60ee1d2bcf5a6105ab3070f /src/org/apache/fop/layout/FontMetric.java | |
parent | abd622447e632998a8c9a5fbf40aec5e0ce73315 (diff) | |
download | xmlgraphics-fop-8db42fcc7af041a77223683e11e053ffb82c4847.tar.gz xmlgraphics-fop-8db42fcc7af041a77223683e11e053ffb82c4847.zip |
removed multiple CRs at end of lines
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193230 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/layout/FontMetric.java')
-rw-r--r-- | src/org/apache/fop/layout/FontMetric.java | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/org/apache/fop/layout/FontMetric.java b/src/org/apache/fop/layout/FontMetric.java index 3ef8f6436..68398b0a9 100644 --- a/src/org/apache/fop/layout/FontMetric.java +++ b/src/org/apache/fop/layout/FontMetric.java @@ -50,35 +50,18 @@ */ package org.apache.fop.layout; - - /** - * interface for font metric classes - */ - public interface FontMetric { - int getAscender(); - int getCapHeight(); - int getDescender(); - int getXHeight(); - - /** - * return width (in 1/1000ths of point size) of character at - * code point i - */ - public int width(int i); - } - |