Fridrich Strba 2022-03-19 05:41:21 +00:00 committed by Git OBS Bridge
parent e96e74c824
commit 06559bd805

View File

@ -11,40 +11,40 @@
* <th> TIFF type </th> <th> Java type </th> * <th> TIFF type </th> <th> Java type </th>
* <tr> * <tr>
- * <td><tt>TIFF_BYTE</tt></td> <td><tt>byte</tt></td> - * <td><tt>TIFF_BYTE</tt></td> <td><tt>byte</tt></td>
+ * <td><var>TIFF_BYTE</var></td> <td><var>byte</var></td> + * <td><code>TIFF_BYTE</code></td> <td><code>byte</code></td>
* <tr> * <tr>
- * <td><tt>TIFF_ASCII</tt></td> <td><tt>String</tt></td> - * <td><tt>TIFF_ASCII</tt></td> <td><tt>String</tt></td>
+ * <td><var>TIFF_ASCII</var></td> <td><var>String</var></td> + * <td><code>TIFF_ASCII</code></td> <td><code>String</code></td>
* <tr> * <tr>
- * <td><tt>TIFF_SHORT</tt></td> <td><tt>char</tt></td> - * <td><tt>TIFF_SHORT</tt></td> <td><tt>char</tt></td>
+ * <td><var>TIFF_SHORT</var></td> <td><var>char</var></td> + * <td><code>TIFF_SHORT</code></td> <td><code>char</code></td>
* <tr> * <tr>
- * <td><tt>TIFF_LONG</tt></td> <td><tt>long</tt></td> - * <td><tt>TIFF_LONG</tt></td> <td><tt>long</tt></td>
+ * <td><var>TIFF_LONG</var></td> <td><var>long</var></td> + * <td><code>TIFF_LONG</code></td> <td><code>long</code></td>
* <tr> * <tr>
- * <td><tt>TIFF_RATIONAL</tt></td> <td><tt>long[2]</tt></td> - * <td><tt>TIFF_RATIONAL</tt></td> <td><tt>long[2]</tt></td>
+ * <td><var>TIFF_RATIONAL</var></td> <td><var>long[2]</var></td> + * <td><code>TIFF_RATIONAL</code></td> <td><code>long[2]</code></td>
* <tr> * <tr>
- * <td><tt>TIFF_SBYTE</tt></td> <td><tt>byte</tt></td> - * <td><tt>TIFF_SBYTE</tt></td> <td><tt>byte</tt></td>
+ * <td><var>TIFF_SBYTE</var></td> <td><var>byte</var></td> + * <td><code>TIFF_SBYTE</code></td> <td><code>byte</code></td>
* <tr> * <tr>
- * <td><tt>TIFF_UNDEFINED</tt></td> <td><tt>byte</tt></td> - * <td><tt>TIFF_UNDEFINED</tt></td> <td><tt>byte</tt></td>
+ * <td><var>TIFF_UNDEFINED</var></td> <td><var>byte</var></td> + * <td><code>TIFF_UNDEFINED</code></td> <td><code>byte</code></td>
* <tr> * <tr>
- * <td><tt>TIFF_SSHORT</tt></td> <td><tt>short</tt></td> - * <td><tt>TIFF_SSHORT</tt></td> <td><tt>short</tt></td>
+ * <td><var>TIFF_SSHORT</var></td> <td><var>short</var></td> + * <td><code>TIFF_SSHORT</code></td> <td><code>short</code></td>
* <tr> * <tr>
- * <td><tt>TIFF_SLONG</tt></td> <td><tt>int</tt></td> - * <td><tt>TIFF_SLONG</tt></td> <td><tt>int</tt></td>
+ * <td><var>TIFF_SLONG</var></td> <td><var>int</var></td> + * <td><code>TIFF_SLONG</code></td> <td><code>int</code></td>
* <tr> * <tr>
- * <td><tt>TIFF_SRATIONAL</tt></td> <td><tt>int[2]</tt></td> - * <td><tt>TIFF_SRATIONAL</tt></td> <td><tt>int[2]</tt></td>
+ * <td><var>TIFF_SRATIONAL</var></td> <td><var>int[2]</var></td> + * <td><code>TIFF_SRATIONAL</code></td> <td><code>int[2]</code></td>
* <tr> * <tr>
- * <td><tt>TIFF_FLOAT</tt></td> <td><tt>float</tt></td> - * <td><tt>TIFF_FLOAT</tt></td> <td><tt>float</tt></td>
+ * <td><var>TIFF_FLOAT</var></td> <td><var>float</var></td> + * <td><code>TIFF_FLOAT</code></td> <td><code>float</code></td>
* <tr> * <tr>
- * <td><tt>TIFF_DOUBLE</tt></td> <td><tt>double</tt></td> - * <td><tt>TIFF_DOUBLE</tt></td> <td><tt>double</tt></td>
+ * <td><var>TIFF_DOUBLE</var></td> <td><var>double</var></td> + * <td><code>TIFF_DOUBLE</code></td> <td><code>double</code></td>
* </table> * </table>
*/ */
public TIFFField(int tag, int type, int count, Object data) { public TIFFField(int tag, int type, int count, Object data) {
@ -55,7 +55,7 @@
* @return a ColorMdoel with Linear sRGB colorSpace and * @return a ColorMdoel with Linear sRGB colorSpace and
* the alpha channel set in accordance with * the alpha channel set in accordance with
- * <tt>premult</tt> - * <tt>premult</tt>
+ * <var>premult</var> + * <code>premult</code>
*/ */
public static ColorModel makeLinear_sRGBCM(boolean premult) { public static ColorModel makeLinear_sRGBCM(boolean premult) {
return premult ? Linear_sRGB_Pre : Linear_sRGB_Unpre; return premult ? Linear_sRGB_Pre : Linear_sRGB_Unpre;
@ -65,15 +65,15 @@
* This method will return a CacheableRed that has it's data in * This method will return a CacheableRed that has it's data in
- * the linear sRGB colorspace. If <tt>src</tt> is already in - * the linear sRGB colorspace. If <tt>src</tt> is already in
- * linear sRGB then this method does nothing and returns <tt>src</tt>. - * linear sRGB then this method does nothing and returns <tt>src</tt>.
+ * the linear sRGB colorspace. If <var>src</var> is already in + * the linear sRGB colorspace. If <code>src</code> is already in
+ * linear sRGB then this method does nothing and returns <var>src</var>. + * linear sRGB then this method does nothing and returns <code>src</code>.
* Otherwise it creates a transform that will convert * Otherwise it creates a transform that will convert
- * <tt>src</tt>'s output to linear sRGB and returns that CacheableRed. - * <tt>src</tt>'s output to linear sRGB and returns that CacheableRed.
+ * <var>src</var>'s output to linear sRGB and returns that CacheableRed. + * <code>src</code>'s output to linear sRGB and returns that CacheableRed.
* *
* @param src The image to convert to linear sRGB. * @param src The image to convert to linear sRGB.
- * @return An equivilant image to <tt>src</tt> who's data is in - * @return An equivilant image to <tt>src</tt> who's data is in
+ * @return An equivilant image to <var>src</var> who's data is in + * @return An equivilant image to <code>src</code> who's data is in
* linear sRGB. * linear sRGB.
*/ */
public static CachableRed convertToLsRGB(CachableRed src) { public static CachableRed convertToLsRGB(CachableRed src) {
@ -83,15 +83,15 @@
* This method will return a CacheableRed that has it's data in * This method will return a CacheableRed that has it's data in
- * the sRGB colorspace. If <tt>src</tt> is already in - * the sRGB colorspace. If <tt>src</tt> is already in
- * sRGB then this method does nothing and returns <tt>src</tt>. - * sRGB then this method does nothing and returns <tt>src</tt>.
+ * the sRGB colorspace. If <var>src</var> is already in + * the sRGB colorspace. If <code>src</code> is already in
+ * sRGB then this method does nothing and returns <var>src</var>. + * sRGB then this method does nothing and returns <code>src</code>.
* Otherwise it creates a transform that will convert * Otherwise it creates a transform that will convert
- * <tt>src</tt>'s output to sRGB and returns that CacheableRed. - * <tt>src</tt>'s output to sRGB and returns that CacheableRed.
+ * <var>src</var>'s output to sRGB and returns that CacheableRed. + * <code>src</code>'s output to sRGB and returns that CacheableRed.
* *
* @param src The image to convert to sRGB. * @param src The image to convert to sRGB.
- * @return An equivilant image to <tt>src</tt> who's data is in sRGB. - * @return An equivilant image to <tt>src</tt> who's data is in sRGB.
+ * @return An equivilant image to <var>src</var> who's data is in sRGB. + * @return An equivilant image to <code>src</code> who's data is in sRGB.
*/ */
public static CachableRed convertTosRGB(CachableRed src) { public static CachableRed convertTosRGB(CachableRed src) {
ColorModel cm = src.getColorModel(); ColorModel cm = src.getColorModel();
@ -100,13 +100,13 @@
/** /**
* Convertes any RenderedImage to a CacheableRed. <p> * Convertes any RenderedImage to a CacheableRed. <p>
- * If <tt>ri</tt> is already a CacheableRed it casts it down and - * If <tt>ri</tt> is already a CacheableRed it casts it down and
+ * If <var>ri</var> is already a CacheableRed it casts it down and + * If <code>ri</code> is already a CacheableRed it casts it down and
* returns it.<p> * returns it.<p>
* *
- * In cases where <tt>ri</tt> is not already a CacheableRed it - * In cases where <tt>ri</tt> is not already a CacheableRed it
- * wraps <tt>ri</tt> with a helper class. The wrapped - * wraps <tt>ri</tt> with a helper class. The wrapped
+ * In cases where <var>ri</var> is not already a CacheableRed it + * In cases where <code>ri</code> is not already a CacheableRed it
+ * wraps <var>ri</var> with a helper class. The wrapped + * wraps <code>ri</code> with a helper class. The wrapped
* CacheableRed "Pretends" that it has no sources since it has no * CacheableRed "Pretends" that it has no sources since it has no
* way of inteligently handling the dependency/dirty region calls * way of inteligently handling the dependency/dirty region calls
* if it exposed the source. * if it exposed the source.
@ -116,8 +116,8 @@
* Copies data from one raster to another. Only the region of * Copies data from one raster to another. Only the region of
- * overlap between src and dst is copied. <tt>Src</tt> and - * overlap between src and dst is copied. <tt>Src</tt> and
- * <tt>Dst</tt> must have compatible SampleModels. - * <tt>Dst</tt> must have compatible SampleModels.
+ * overlap between src and dst is copied. <var>Src</var> and + * overlap between src and dst is copied. <code>Src</code> and
+ * <var>Dst</var> must have compatible SampleModels. + * <code>Dst</code> must have compatible SampleModels.
* *
* @param src The source of the data * @param src The source of the data
* @param dst The destination for the data. * @param dst The destination for the data.
@ -126,16 +126,16 @@
/** /**
* Creates a new raster that has a <b>copy</b> of the data in * Creates a new raster that has a <b>copy</b> of the data in
- * <tt>ras</tt>. This is highly optimized for speed. There is - * <tt>ras</tt>. This is highly optimized for speed. There is
+ * <var>ras</var>. This is highly optimized for speed. There is + * <code>ras</code>. This is highly optimized for speed. There is
* no provision for changing any aspect of the SampleModel. * no provision for changing any aspect of the SampleModel.
* *
* This method should be used when you need to change the contents * This method should be used when you need to change the contents
* of a Raster that you do not "own" (ie the result of a * of a Raster that you do not "own" (ie the result of a
- * <tt>getData</tt> call). - * <tt>getData</tt> call).
+ * <var>getData</var> call). + * <code>getData</code> call).
* @param ras The Raster to copy. * @param ras The Raster to copy.
- * @return A writable copy of <tt>ras</tt> - * @return A writable copy of <tt>ras</tt>
+ * @return A writable copy of <var>ras</var> + * @return A writable copy of <code>ras</code>
*/ */
public static WritableRaster copyRaster(Raster ras) { public static WritableRaster copyRaster(Raster ras) {
return copyRaster(ras, ras.getMinX(), ras.getMinY()); return copyRaster(ras, ras.getMinX(), ras.getMinY());
@ -144,14 +144,14 @@
/** /**
* Creates a new raster that has a <b>copy</b> of the data in * Creates a new raster that has a <b>copy</b> of the data in
- * <tt>ras</tt>. This is highly optimized for speed. There is - * <tt>ras</tt>. This is highly optimized for speed. There is
+ * <var>ras</var>. This is highly optimized for speed. There is + * <code>ras</code>. This is highly optimized for speed. There is
* no provision for changing any aspect of the SampleModel. * no provision for changing any aspect of the SampleModel.
* However you can specify a new location for the returned raster. * However you can specify a new location for the returned raster.
* *
* This method should be used when you need to change the contents * This method should be used when you need to change the contents
* of a Raster that you do not "own" (ie the result of a * of a Raster that you do not "own" (ie the result of a
- * <tt>getData</tt> call). - * <tt>getData</tt> call).
+ * <var>getData</var> call). + * <code>getData</code> call).
* *
* @param ras The Raster to copy. * @param ras The Raster to copy.
* *
@ -160,7 +160,7 @@
* returned WritableRaster. * returned WritableRaster.
* *
- * @return A writable copy of <tt>ras</tt> - * @return A writable copy of <tt>ras</tt>
+ * @return A writable copy of <var>ras</var> + * @return A writable copy of <code>ras</code>
*/ */
public static WritableRaster copyRaster(Raster ras, int minX, int minY) { public static WritableRaster copyRaster(Raster ras, int minX, int minY) {
WritableRaster ret = Raster.createWritableRaster( WritableRaster ret = Raster.createWritableRaster(
@ -169,7 +169,7 @@
/** /**
- * Coerces <tt>ras</tt> to be writable. The returned Raster continues to - * Coerces <tt>ras</tt> to be writable. The returned Raster continues to
+ * Coerces <var>ras</var> to be writable. The returned Raster continues to + * Coerces <code>ras</code> to be writable. The returned Raster continues to
* reference the DataBuffer from ras, so modifications to the returned * reference the DataBuffer from ras, so modifications to the returned
* WritableRaster will be seen in ras.<p> * WritableRaster will be seen in ras.<p>
* *
@ -177,12 +177,12 @@
* an interface (such as to construct a BufferedImage), but have no * an interface (such as to construct a BufferedImage), but have no
* intention of modifying the contents of the returned Raster. If * intention of modifying the contents of the returned Raster. If
- * you have any doubt about other users of the data in <tt>ras</tt>, - * you have any doubt about other users of the data in <tt>ras</tt>,
+ * you have any doubt about other users of the data in <var>ras</var>, + * you have any doubt about other users of the data in <code>ras</code>,
* use copyRaster (above). * use copyRaster (above).
* @param ras The raster to make writable. * @param ras The raster to make writable.
* @return A Writable version of ras (shares DataBuffer with * @return A Writable version of ras (shares DataBuffer with
- * <tt>ras</tt>). - * <tt>ras</tt>).
+ * <var>ras</var>). + * <code>ras</code>).
*/ */
public static WritableRaster makeRasterWritable(Raster ras) { public static WritableRaster makeRasterWritable(Raster ras) {
return makeRasterWritable(ras, ras.getMinX(), ras.getMinY()); return makeRasterWritable(ras, ras.getMinX(), ras.getMinY());
@ -190,7 +190,7 @@
/** /**
- * Coerces <tt>ras</tt> to be writable. The returned Raster continues to - * Coerces <tt>ras</tt> to be writable. The returned Raster continues to
+ * Coerces <var>ras</var> to be writable. The returned Raster continues to + * Coerces <code>ras</code> to be writable. The returned Raster continues to
* reference the DataBuffer from ras, so modifications to the returned * reference the DataBuffer from ras, so modifications to the returned
* WritableRaster will be seen in ras.<p> * WritableRaster will be seen in ras.<p>
* *
@ -199,7 +199,7 @@
* an interface (such as to construct a BufferedImage), but have no * an interface (such as to construct a BufferedImage), but have no
* intention of modifying the contents of the returned Raster. If * intention of modifying the contents of the returned Raster. If
- * you have any doubt about other users of the data in <tt>ras</tt>, - * you have any doubt about other users of the data in <tt>ras</tt>,
+ * you have any doubt about other users of the data in <var>ras</var>, + * you have any doubt about other users of the data in <code>ras</code>,
* use copyRaster (above). * use copyRaster (above).
* *
* @param ras The raster to make writable. * @param ras The raster to make writable.
@ -208,10 +208,10 @@
* returned WritableRaster. * returned WritableRaster.
* *
- * @return A Writable version of <tT>ras</tt> with it's upper left - * @return A Writable version of <tT>ras</tt> with it's upper left
+ * @return A Writable version of <var>ras</var> with it's upper left + * @return A Writable version of <code>ras</code> with it's upper left
* hand coordinate set to minX, minY (shares it's DataBuffer * hand coordinate set to minX, minY (shares it's DataBuffer
- * with <tt>ras</tt>). - * with <tt>ras</tt>).
+ * with <var>ras</var>). + * with <code>ras</code>).
*/ */
public static WritableRaster makeRasterWritable(Raster ras, public static WritableRaster makeRasterWritable(Raster ras,
int minX, int minY) { int minX, int minY) {
@ -222,7 +222,7 @@
* by the {@link #getMessage()} method). * by the {@link #getMessage()} method).
* @param cause the cause (which is saved for later retrieval by the * @param cause the cause (which is saved for later retrieval by the
- * {@link #getCause()} method). (A <tt>null</tt> value is - * {@link #getCause()} method). (A <tt>null</tt> value is
+ * {@link #getCause()} method). (A <var>null</var> value is + * {@link #getCause()} method). (A <code>null</code> value is
* permitted, and indicates that the cause is nonexistent or * permitted, and indicates that the cause is nonexistent or
* unknown.) * unknown.)
*/ */
@ -233,7 +233,7 @@
* by the {@link #getMessage()} method). * by the {@link #getMessage()} method).
* @param cause the cause (which is saved for later retrieval by the * @param cause the cause (which is saved for later retrieval by the
- * {@link #getCause()} method). (A <tt>null</tt> value is - * {@link #getCause()} method). (A <tt>null</tt> value is
+ * {@link #getCause()} method). (A <var>null</var> value is + * {@link #getCause()} method). (A <code>null</code> value is
* permitted, and indicates that the cause is nonexistent or * permitted, and indicates that the cause is nonexistent or
* unknown.) * unknown.)
*/ */
@ -244,7 +244,7 @@
<body> <body>
Classes, codecs and utilities for bitmap images. Classes, codecs and utilities for bitmap images.
-Contains extensions to the <tt>java.awt.image</tt> package. This -Contains extensions to the <tt>java.awt.image</tt> package. This
+Contains extensions to the <var>java.awt.image</var> package. This +Contains extensions to the <code>java.awt.image</code> package. This
package provides convenient methods, some utility classes and image package provides convenient methods, some utility classes and image
codec classes. These generally bypass broken methods in Java2D or codec classes. These generally bypass broken methods in Java2D or
provide tweaked implementations. provide tweaked implementations.
@ -256,24 +256,24 @@
/** /**
- * This extension of the <tt>java.awt.Graphics2D</tt> abstract class - * This extension of the <tt>java.awt.Graphics2D</tt> abstract class
- * is still abstract, but it implements a lot of the <tt>Graphics2D</tt> - * is still abstract, but it implements a lot of the <tt>Graphics2D</tt>
+ * This extension of the <var>java.awt.Graphics2D</var> abstract class + * This extension of the <code>java.awt.Graphics2D</code> abstract class
+ * is still abstract, but it implements a lot of the <var>Graphics2D</var> + * is still abstract, but it implements a lot of the <code>Graphics2D</code>
* method in a way that concrete implementations can reuse. * method in a way that concrete implementations can reuse.
* *
- * This class uses a <tt>GraphicContext</tt> to store the state of - * This class uses a <tt>GraphicContext</tt> to store the state of
+ * This class uses a <var>GraphicContext</var> to store the state of + * This class uses a <code>GraphicContext</code> to store the state of
* its various attributes that control the rendering, such as the * its various attributes that control the rendering, such as the
- * current <tt>Font</tt>, <tt>Paint</tt> or clip. - * current <tt>Font</tt>, <tt>Paint</tt> or clip.
+ * current <var>Font</var>, <var>Paint</var> or clip. + * current <code>Font</code>, <code>Paint</code> or clip.
* *
* Concrete implementations can focus on implementing the rendering * Concrete implementations can focus on implementing the rendering
- * methods, such as <tt>drawShape</tt>. As a convenience, rendering - * methods, such as <tt>drawShape</tt>. As a convenience, rendering
+ * methods, such as <var>drawShape</var>. As a convenience, rendering + * methods, such as <code>drawShape</code>. As a convenience, rendering
* methods that can be expressed with other rendering methods (e.g., * methods that can be expressed with other rendering methods (e.g.,
- * <tt>drawRect</tt> can be expressed as <tt>draw(new Rectangle(..))</tt>), - * <tt>drawRect</tt> can be expressed as <tt>draw(new Rectangle(..))</tt>),
- * are implemented by <tt>AbstractGraphics2D</tt> - * are implemented by <tt>AbstractGraphics2D</tt>
+ * <var>drawRect</var> can be expressed as <var>draw(new Rectangle(..))</var>), + * <code>drawRect</code> can be expressed as <code>draw(new Rectangle(..))</code>),
+ * are implemented by <var>AbstractGraphics2D</var> + * are implemented by <code>AbstractGraphics2D</code>
* *
* @version $Id: AbstractGraphics2D.java 1739071 2016-04-14 12:30:21Z ssteiner $ * @version $Id: AbstractGraphics2D.java 1739071 2016-04-14 12:30:21Z ssteiner $
* @see org.apache.xmlgraphics.java2d.GraphicContext * @see org.apache.xmlgraphics.java2d.GraphicContext
@ -282,7 +282,7 @@
/** /**
* Current state of the Graphic Context. The GraphicsContext * Current state of the Graphic Context. The GraphicsContext
- * class manages the state of this <tt>Graphics2D</tt> graphic context - * class manages the state of this <tt>Graphics2D</tt> graphic context
+ * class manages the state of this <var>Graphics2D</var> graphic context + * class manages the state of this <code>Graphics2D</code> graphic context
* attributes. * attributes.
*/ */
protected GraphicContext gc; protected GraphicContext gc;
@ -293,16 +293,16 @@
/** /**
- * This concrete implementation of <tt>AbstractGraphics2D</tt> is a - * This concrete implementation of <tt>AbstractGraphics2D</tt> is a
+ * This concrete implementation of <var>AbstractGraphics2D</var> is a + * This concrete implementation of <code>AbstractGraphics2D</code> is a
* simple help to programmers to get started with their own * simple help to programmers to get started with their own
- * implementation of <tt>Graphics2D</tt>. - * implementation of <tt>Graphics2D</tt>.
- * <tt>DefaultGraphics2D</tt> implements all the abstract methods - * <tt>DefaultGraphics2D</tt> implements all the abstract methods
- * is <tt>AbstractGraphics2D</tt> and makes it easy to start - * is <tt>AbstractGraphics2D</tt> and makes it easy to start
- * implementing a <tt>Graphic2D</tt> piece-meal. - * implementing a <tt>Graphic2D</tt> piece-meal.
+ * implementation of <var>Graphics2D</var>. + * implementation of <code>Graphics2D</code>.
+ * <var>DefaultGraphics2D</var> implements all the abstract methods + * <code>DefaultGraphics2D</code> implements all the abstract methods
+ * is <var>AbstractGraphics2D</var> and makes it easy to start + * is <code>AbstractGraphics2D</code> and makes it easy to start
+ * implementing a <var>Graphic2D</var> piece-meal. + * implementing a <code>Graphic2D</code> piece-meal.
* *
* @version $Id: DefaultGraphics2D.java 1732018 2016-02-24 04:51:06Z gadams $ * @version $Id: DefaultGraphics2D.java 1732018 2016-02-24 04:51:06Z gadams $
* @see org.apache.xmlgraphics.java2d.AbstractGraphics2D * @see org.apache.xmlgraphics.java2d.AbstractGraphics2D
@ -313,10 +313,10 @@
/** /**
- * This class is a wrapper for the <tt>PSGraphics2D</tt> that - * This class is a wrapper for the <tt>PSGraphics2D</tt> that
+ * This class is a wrapper for the <var>PSGraphics2D</var> that + * This class is a wrapper for the <code>PSGraphics2D</code> that
* is used to create a full document around the PostScript rendering from * is used to create a full document around the PostScript rendering from
- * <tt>PSGraphics2D</tt>. - * <tt>PSGraphics2D</tt>.
+ * <var>PSGraphics2D</var>. + * <code>PSGraphics2D</code>.
* *
* @version $Id: AbstractPSDocumentGraphics2D.java 1732018 2016-02-24 04:51:06Z gadams $ * @version $Id: AbstractPSDocumentGraphics2D.java 1732018 2016-02-24 04:51:06Z gadams $
* @see org.apache.xmlgraphics.java2d.ps.PSGraphics2D * @see org.apache.xmlgraphics.java2d.ps.PSGraphics2D
@ -327,7 +327,7 @@
/** /**
- * This class is a wrapper for the <tt>AbstractPSDocumentGraphics2D</tt> that - * This class is a wrapper for the <tt>AbstractPSDocumentGraphics2D</tt> that
+ * This class is a wrapper for the <var>AbstractPSDocumentGraphics2D</var> that + * This class is a wrapper for the <code>AbstractPSDocumentGraphics2D</code> that
* is used to create EPS (Encapsulated PostScript) files instead of PS file. * is used to create EPS (Encapsulated PostScript) files instead of PS file.
* *
* @version $Id: EPSDocumentGraphics2D.java 1732018 2016-02-24 04:51:06Z gadams $ * @version $Id: EPSDocumentGraphics2D.java 1732018 2016-02-24 04:51:06Z gadams $
@ -338,10 +338,10 @@
/** /**
- * This class is a wrapper for the <tt>PSGraphics2D</tt> that - * This class is a wrapper for the <tt>PSGraphics2D</tt> that
+ * This class is a wrapper for the <var>PSGraphics2D</var> that + * This class is a wrapper for the <code>PSGraphics2D</code> that
* is used to create a full document around the PostScript rendering from * is used to create a full document around the PostScript rendering from
- * <tt>PSGraphics2D</tt>. - * <tt>PSGraphics2D</tt>.
+ * <var>PSGraphics2D</var>. + * <code>PSGraphics2D</code>.
* *
* @version $Id: PSDocumentGraphics2D.java 1681108 2015-05-22 13:26:12Z ssteiner $ * @version $Id: PSDocumentGraphics2D.java 1681108 2015-05-22 13:26:12Z ssteiner $
* @see org.apache.xmlgraphics.java2d.ps.PSGraphics2D * @see org.apache.xmlgraphics.java2d.ps.PSGraphics2D
@ -353,8 +353,8 @@
/** /**
- * This is a concrete implementation of <tt>AbstractGraphics2D</tt> (and - * This is a concrete implementation of <tt>AbstractGraphics2D</tt> (and
- * therefore of <tt>Graphics2D</tt>) which is able to generate PostScript - * therefore of <tt>Graphics2D</tt>) which is able to generate PostScript
+ * This is a concrete implementation of <var>AbstractGraphics2D</var> (and + * This is a concrete implementation of <code>AbstractGraphics2D</code> (and
+ * therefore of <var>Graphics2D</var>) which is able to generate PostScript + * therefore of <code>Graphics2D</code>) which is able to generate PostScript
* code. * code.
* *
* @version $Id: PSGraphics2D.java 1845492 2018-11-01 15:54:06Z ssteiner $ * @version $Id: PSGraphics2D.java 1845492 2018-11-01 15:54:06Z ssteiner $
@ -365,10 +365,10 @@
/** /**
- * Returns <tt>true</tt> if this map contains no key-value mappings. - * Returns <tt>true</tt> if this map contains no key-value mappings.
+ * Returns <var>true</var> if this map contains no key-value mappings. + * Returns <code>true</code> if this map contains no key-value mappings.
* *
- * @return <tt>true</tt> if this map contains no key-value mappings. - * @return <tt>true</tt> if this map contains no key-value mappings.
+ * @return <var>true</var> if this map contains no key-value mappings. + * @return <code>true</code> if this map contains no key-value mappings.
*/ */
public boolean isEmpty() { public boolean isEmpty() {
if (flushOnRetrieval) { if (flushOnRetrieval) {