You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ti...@apache.org on 2016/06/24 16:42:54 UTC

svn commit: r1750133 - /pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDFontLike.java

Author: tilman
Date: Fri Jun 24 16:42:54 2016
New Revision: 1750133

URL: http://svn.apache.org/viewvc?rev=1750133&view=rev
Log:
PDFBOX-2852: fix javadoc

Modified:
    pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDFontLike.java

Modified: pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDFontLike.java
URL: http://svn.apache.org/viewvc/pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDFontLike.java?rev=1750133&r1=1750132&r2=1750133&view=diff
==============================================================================
--- pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDFontLike.java (original)
+++ pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDFontLike.java Fri Jun 24 16:42:54 2016
@@ -71,13 +71,15 @@ public interface PDFontLike
      * PDFont subclass to retrieve the glyph outline as a GeneralPath.
      * 
      * @param code character code
-     * @deprecated Use {@link #getBoundingBox()#getHeight(int) } instead.
+     * @deprecated Use
+     * {@link #getBoundingBox() getBoundingBox()}.{@link BoundingBox#getHeight() getHeight()}
+     * instead.
      */
     @Deprecated
     float getHeight(int code) throws IOException;
 
     /**
-     * Returns the advance width of the given character, in glyph space.</p>
+     * Returns the advance width of the given character, in glyph space.<p>
      * 
      * If you want the visual bounds of the glyph then call getPath(..) on the appropriate
      * PDFont subclass to retrieve the glyph outline as a GeneralPath instead.