]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Javadoc fix (references were wrong)
authorJeremias Maerki <jeremias@apache.org>
Wed, 8 Jan 2003 15:02:54 +0000 (15:02 +0000)
committerJeremias Maerki <jeremias@apache.org>
Wed, 8 Jan 2003 15:02:54 +0000 (15:02 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195833 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/render/awt/FontMetricsMapper.java

index ecabbc032d2ce2479bc79dbf0b3f4097ef6b147d..3c4e583de6c41792319b501fddc0fd3997022ef5 100644 (file)
@@ -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;