1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-05 01:50:49 +00:00

javadoc links which are not in the code removed

This commit is contained in:
soloturn 2022-09-24 10:58:52 +02:00
parent 763e60b2d1
commit c124a9d550
2 changed files with 11 additions and 13 deletions

View File

@ -16,8 +16,6 @@
package ext.plantuml.com.google.zxing;
import java.io.Reader;
/**
* Encapsulates a type of hint that a caller may pass to a barcode reader to help it
* more quickly or accurately decode it. It is up to implementations to decide what,
@ -25,7 +23,7 @@ import java.io.Reader;
*
* @author Sean Owen
* @author dswitkin@google.com (Daniel Switkin)
* @see Reader#decode(BinaryBitmap,java.util.Hashtable)
* see Reader#decode(BinaryBitmap,java.util.Hashtable)
*/
public final class DecodeHintType {
@ -71,7 +69,7 @@ public final class DecodeHintType {
/**
* The caller needs to be notified via callback when a possible {@link ResultPoint}
* is found. Maps to a {@link ResultPointCallback}.
* is found. Maps to a ResultPointCallback.
*/
public static final DecodeHintType NEED_RESULT_POINT_CALLBACK = new DecodeHintType();

View File

@ -35,16 +35,16 @@ import jcckit.util.Factory;
/**
* Class which handles plotting into a <tt>Graphics</tt> context based on the
* {@link jcckit.renderer.GraphicsRenderer}. This class is not a subclass of
* {link jcckit.renderer.GraphicsRenderer}. This class is not a subclass of
* <tt>java.awt.Component</tt>. The actual AWT component presenting the plot
* is an innerclass. Its instance wrapped by <tt>GraphicsPlotCanvas</tt> can
* be obtained with {@link #getGraphicsCanvas}.
* be obtained with {link #getGraphicsCanvas}.
* <p>
* The plot is painted by using double-buffering and pre-rendered view of the
* coordinate system. That is, the coordinate system is drawn into an off-screen
* image. It will be redrawn only if the size of the embedding AWT component is
* changed.
*
*
* @author Franz-Josef Elmer
*/
public class GraphicsPlotCanvas extends PlotCanvas {
@ -57,7 +57,7 @@ public class GraphicsPlotCanvas extends PlotCanvas {
* Class which does the actual painting. Needs the <tt>Component</tt> into
* which the plot is painted for some resources like size, background color,
* etc.
*
*
* @author Franz-Josef Elmer
*/
private final BufferedImage img3;
@ -95,7 +95,7 @@ public class GraphicsPlotCanvas extends PlotCanvas {
* <tr>
* <td><tt>doubleBuffering = true</tt></td>
* <td><tt>boolean</tt></td><td>no</td>
* <td>If <tt>true</tt> the plot will be painted by using
* <td>If <tt>true</tt> the plot will be painted by using
* double-buffering and pre-rendered view of the coordinate system.
* </td></tr>
* </table>
@ -120,7 +120,7 @@ public class GraphicsPlotCanvas extends PlotCanvas {
private final Color foreground;
/**
* Paints the plot. If {@link GraphicsPlotCanvas#_doubleBuffering} is set
* Paints the plot. If {link GraphicsPlotCanvas#_doubleBuffering} is set
* double-buffering and pre-rendered view of the coordinate system is used.
*/
public void paint() {
@ -192,8 +192,8 @@ public class GraphicsPlotCanvas extends PlotCanvas {
/**
* Sets the renderer used to render the plot. The default value is
* {@link GraphicsRenderer}.
*
* {link GraphicsRenderer}.
*
* @param className
* Fully qualified name of the renderer class.
*/
@ -217,7 +217,7 @@ public class GraphicsPlotCanvas extends PlotCanvas {
/**
* Defines a graphical marker which will be drawn on top of the plot. To
* remove the marker call this method with argument <tt>null</tt>.
*
*
* @param marker
* Marker element. Can be <tt>null</tt>.
*/