diff options
author | Jeremias Maerki <jeremias@apache.org> | 2003-01-08 15:02:54 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2003-01-08 15:02:54 +0000 |
commit | 912a9531c412d7d8669d8a14b3d30c35fa02ab5d (patch) | |
tree | 7568d0dc2a49b016307775f58a0373262c3cf663 /src | |
parent | 06c6f4441994082bdd2223320e500cf3b188b45f (diff) | |
download | xmlgraphics-fop-912a9531c412d7d8669d8a14b3d30c35fa02ab5d.tar.gz xmlgraphics-fop-912a9531c412d7d8669d8a14b3d30c35fa02ab5d.zip |
Javadoc fix (references were wrong)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195833 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/org/apache/fop/render/awt/FontMetricsMapper.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/org/apache/fop/render/awt/FontMetricsMapper.java b/src/org/apache/fop/render/awt/FontMetricsMapper.java index ecabbc032..3c4e583de 100644 --- a/src/org/apache/fop/render/awt/FontMetricsMapper.java +++ b/src/org/apache/fop/render/awt/FontMetricsMapper.java @@ -66,49 +66,49 @@ public class FontMetricsMapper implements FontMetrics { } /** - * @see org.apache.fop.layout.FontMetrics#getFontName() + * @see org.apache.fop.fonts.FontMetrics#getFontName() */ public String getFontName() { return family; } /** - * @see org.apache.fop.layout.FontMetrics#getFontType() + * @see org.apache.fop.fonts.FontMetrics#getFontType() */ public FontType getFontType() { return FontType.OTHER; } /** - * @see org.apache.fop.layout.FontMetrics#getAscender(int) + * @see org.apache.fop.fonts.FontMetrics#getAscender(int) */ public int getAscender(int size) { return metric.getAscender(family, style, size); } /** - * @see org.apache.fop.layout.FontMetrics#getCapHeight(int) + * @see org.apache.fop.fonts.FontMetrics#getCapHeight(int) */ public int getCapHeight(int size) { return metric.getCapHeight(family, style, size); } /** - * @see org.apache.fop.layout.FontMetrics#getDescender(int) + * @see org.apache.fop.fonts.FontMetrics#getDescender(int) */ public int getDescender(int size) { return metric.getDescender(family, style, size); } /** - * @see org.apache.fop.layout.FontMetrics#getXHeight(int) + * @see org.apache.fop.fonts.FontMetrics#getXHeight(int) */ public int getXHeight(int size) { return metric.getXHeight(family, style, size); } /** - * @see org.apache.fop.layout.FontMetrics#getWidth(int, int) + * @see org.apache.fop.fonts.FontMetrics#getWidth(int, int) */ public int getWidth(int i, int size) { return metric.width(i, family, style, size); @@ -116,7 +116,7 @@ public class FontMetricsMapper implements FontMetrics { /** - * @see org.apache.fop.layout.FontMetrics#getWidths() + * @see org.apache.fop.fonts.FontMetrics#getWidths() */ public int[] getWidths() { return metric.getWidths(family, style, AWTFontMetrics.FONT_SIZE); @@ -133,14 +133,14 @@ public class FontMetricsMapper implements FontMetrics { } /** - * @see org.apache.fop.layout.FontMetrics#getKerningInfo() + * @see org.apache.fop.fonts.FontMetrics#getKerningInfo() */ public Map getKerningInfo() { return java.util.Collections.EMPTY_MAP; } /** - * @see org.apache.fop.layout.FontMetrics#hasKerningInfo() + * @see org.apache.fop.fonts.FontMetrics#hasKerningInfo() */ public boolean hasKerningInfo() { return false; |