javadoc fixes part 15 (ticket #1894)

This commit is contained in:
zzz
2017-01-27 16:00:58 +00:00
parent e0e06d73eb
commit 78da3b9785
8 changed files with 16 additions and 14 deletions

View File

@ -212,6 +212,7 @@ public class Snark
***********/ ***********/
/** max connections */
public static final String PROP_MAX_CONNECTIONS = "i2psnark.maxConnections"; public static final String PROP_MAX_CONNECTIONS = "i2psnark.maxConnections";
/** most of these used to be public, use accessors below instead */ /** most of these used to be public, use accessors below instead */

View File

@ -695,7 +695,7 @@ public class Storage implements Closeable
* Doesn't really reopen the file descriptors for a restart. * Doesn't really reopen the file descriptors for a restart.
* Just does an existence check but no length check or data reverification * Just does an existence check but no length check or data reverification
* *
* @throws IOE on fail * @throws IOException on fail
*/ */
public void reopen() throws IOException public void reopen() throws IOException
{ {

View File

@ -25,13 +25,13 @@ import net.i2p.util.ConvertToHash;
* This servlet generates <i>identicon</i> (visual identifier) images ranging * This servlet generates <i>identicon</i> (visual identifier) images ranging
* from 16x16 to 512x512 in size. * from 16x16 to 512x512 in size.
* *
* <h5>Supported Image Formats</h5> * <h3>Supported Image Formats</h3>
* <p> * <p>
* Currently only PNG is supported because <code>javax.imageio</code> package * Currently only PNG is supported because <code>javax.imageio</code> package
* does not come with built-in GIF encoder and PNG is the only remaining * does not come with built-in GIF encoder and PNG is the only remaining
* reasonable format. * reasonable format.
* </p> * </p>
* <h5>Initialization Parameters:</h5> * <h3>Initialization Parameters:</h3>
* <blockquote> * <blockquote>
* <dl> * <dl>
* <dt>inetSalt</dt> * <dt>inetSalt</dt>
@ -42,7 +42,7 @@ import net.i2p.util.ConvertToHash;
* (Optional)</dd> * (Optional)</dd>
* </dl> * </dl>
* </blockquote> * </blockquote>
* <h5>Request ParametersP</h5> * <h3>Request ParametersP</h3>
* <blockquote> * <blockquote>
* <dl> * <dl>
* <dt>code</dt> * <dt>code</dt>

View File

@ -40,21 +40,21 @@ public enum EncodeHintType {
CHARACTER_SET, CHARACTER_SET,
/** /**
* Specifies the matrix shape for Data Matrix (type {@link com.google.zxing.datamatrix.encoder.SymbolShapeHint}) * Specifies the matrix shape for Data Matrix (type com.google.zxing.datamatrix.encoder.SymbolShapeHint)
*/ */
DATA_MATRIX_SHAPE, DATA_MATRIX_SHAPE,
/** /**
* Specifies a minimum barcode size (type {@link Dimension}). Only applicable to Data Matrix now. * Specifies a minimum barcode size (type Dimension). Only applicable to Data Matrix now.
* *
* @deprecated use width/height params in * @deprecated use width/height params in
* {@link com.google.zxing.datamatrix.DataMatrixWriter#encode(String, BarcodeFormat, int, int)} * com.google.zxing.datamatrix.DataMatrixWriter#encode(String, BarcodeFormat, int, int)
*/ */
@Deprecated @Deprecated
MIN_SIZE, MIN_SIZE,
/** /**
* Specifies a maximum barcode size (type {@link Dimension}). Only applicable to Data Matrix now. * Specifies a maximum barcode size (type Dimension). Only applicable to Data Matrix now.
* *
* @deprecated without replacement * @deprecated without replacement
*/ */
@ -76,14 +76,14 @@ public enum EncodeHintType {
/** /**
* Specifies what compaction mode to use for PDF417 (type * Specifies what compaction mode to use for PDF417 (type
* {@link com.google.zxing.pdf417.encoder.Compaction Compaction} or {@link String} value of one of its * com.google.zxing.pdf417.encoder.Compaction Compaction or {@link String} value of one of its
* enum values). * enum values).
*/ */
PDF417_COMPACTION, PDF417_COMPACTION,
/** /**
* Specifies the minimum and maximum number of rows and columns for PDF417 (type * Specifies the minimum and maximum number of rows and columns for PDF417 (type
* {@link com.google.zxing.pdf417.encoder.Dimensions Dimensions}). * com.google.zxing.pdf417.encoder.Dimensions Dimensions).
*/ */
PDF417_DIMENSIONS, PDF417_DIMENSIONS,

View File

@ -21,7 +21,7 @@ package com.google.zxing.qrcode.decoder;
* error correction level.</p> * error correction level.</p>
* *
* @author Sean Owen * @author Sean Owen
* @see DataMask * See DataMask
* @see ErrorCorrectionLevel * @see ErrorCorrectionLevel
*/ */
final class FormatInformation { final class FormatInformation {

View File

@ -38,8 +38,9 @@ import org.mortbay.util.LineInput;
* <p> * <p>
* This class decodes the multipart/form-data stream sent by * This class decodes the multipart/form-data stream sent by
* a HTML form that uses a file input item. * a HTML form that uses a file input item.
* </p>
* *
* <h4>Usage</h4> * <h3>Usage</h3>
* Each part of the form data is named from the HTML form and * Each part of the form data is named from the HTML form and
* is available either via getString(name) or getInputStream(name). * is available either via getString(name) or getInputStream(name).
* Furthermore the MIME parameters and filename can be requested for * Furthermore the MIME parameters and filename can be requested for

View File

@ -30,7 +30,7 @@ import org.jrobin.core.RrdException;
* This class is a quick hack to read information from an RRD file. Writing * This class is a quick hack to read information from an RRD file. Writing
* to RRD files is not currently supported. As I said, this is a quick hack. * to RRD files is not currently supported. As I said, this is a quick hack.
* Some thought should be put into the overall design of the file IO. * Some thought should be put into the overall design of the file IO.
* <p/> * <p>
* Currently this can read RRD files that were generated on Solaris (Sparc) * Currently this can read RRD files that were generated on Solaris (Sparc)
* and Linux (x86). * and Linux (x86).
* *

View File

@ -139,7 +139,7 @@ class SSLUtil {
* Sets up the SSLContext and sets the socket factory. * Sets up the SSLContext and sets the socket factory.
* No option prefix allowed. * No option prefix allowed.
* *
* @throws IOException; GeneralSecurityExceptions are wrapped in IOE for convenience * @throws IOException GeneralSecurityExceptions are wrapped in IOE for convenience
* @return factory, throws on all errors * @return factory, throws on all errors
*/ */
public static SSLServerSocketFactory initializeFactory(Properties opts) throws IOException { public static SSLServerSocketFactory initializeFactory(Properties opts) throws IOException {