jeremias    2003/01/08 07:02:54

  Modified:    src/org/apache/fop/render/awt FontMetricsMapper.java
  Log:
  Javadoc fix (references were wrong)
  
  Revision  Changes    Path
  1.7       +11 -11    xml-fop/src/org/apache/fop/render/awt/FontMetricsMapper.java
  
  Index: FontMetricsMapper.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/render/awt/FontMetricsMapper.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- FontMetricsMapper.java    8 Jan 2003 13:58:25 -0000       1.6
  +++ FontMetricsMapper.java    8 Jan 2003 15:02:54 -0000       1.7
  @@ -66,49 +66,49 @@
       }
   
       /**
  -     * @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 @@
   
   
       /**
  -     * @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 @@
       }
   
       /**
  -     * @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;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to