Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 11, 2023
1 parent c3c840a commit 527d851
Show file tree
Hide file tree
Showing 29 changed files with 30 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public BootstrapMethod(final BootstrapMethod c) {
}

/**
* Construct object from input stream.
* Constructs object from input stream.
*
* @param input Input stream
* @throws IOException if an I/O error occurs.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public BootstrapMethods(final int nameIndex, final int length, final BootstrapMe
}

/**
* Construct object from Input stream.
* Constructs object from Input stream.
*
* @param nameIndex Index in constant pool to CONSTANT_Utf8
* @param length Content length in bytes
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/classfile/ConstantValue.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public ConstantValue(final ConstantValue c) {
}

/**
* Construct object from input stream.
* Constructs object from input stream.
*
* @param nameIndex Name index in constant pool
* @param length Content length in bytes
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/classfile/Deprecated.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public Deprecated(final int nameIndex, final int length, final byte[] bytes, fin
}

/**
* Construct object from input stream.
* Constructs object from input stream.
*
* @param nameIndex Index in constant pool to CONSTANT_Utf8
* @param length Content length in bytes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public ExceptionTable(final ExceptionTable c) {
}

/**
* Construct object from input stream.
* Constructs object from input stream.
*
* @param nameIndex Index in constant pool
* @param length Content length in bytes
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/classfile/Field.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public static void setComparator(final BCELComparator comparator) {
}

/**
* Construct object from file stream.
* Constructs object from file stream.
*
* @param file Input stream
*/
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/apache/bcel/classfile/FieldOrMethod.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public abstract class FieldOrMethod extends AccessFlags implements Cloneable, No
}

/**
* Construct object from file stream.
* Constructs object from file stream.
*
* @param file Input stream
* @throws IOException if an I/O error occurs.
Expand All @@ -83,7 +83,7 @@ protected FieldOrMethod(final DataInput file, final ConstantPool constantPool) t
}

/**
* Construct object from file stream.
* Constructs object from file stream.
*
* @param file Input stream
* @throws IOException if an I/O error occurs.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/classfile/InnerClass.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public final class InnerClass implements Cloneable, Node {
private int innerAccessFlags;

/**
* Construct object from file stream.
* Constructs object from file stream.
*
* @param file Input stream
* @throws IOException if an I/O error occurs.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/classfile/InnerClasses.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public InnerClasses(final InnerClasses c) {
}

/**
* Construct object from input stream.
* Constructs object from input stream.
*
* @param nameIndex Index in constant pool to CONSTANT_Utf8
* @param length Content length in bytes
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/classfile/LineNumber.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public final class LineNumber implements Cloneable, Node {
private int lineNumber;

/**
* Construct object from file stream.
* Constructs object from file stream.
*
* @param file Input stream
* @throws IOException if an I/O Exception occurs in readUnsignedShort
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public final class LineNumberTable extends Attribute implements Iterable<LineNum
private LineNumber[] lineNumberTable; // Table of line/numbers pairs

/**
* Construct object from input stream.
* Constructs object from input stream.
*
* @param nameIndex Index of name
* @param length Content length in bytes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class LocalVariableTable extends Attribute implements Iterable<LocalVaria
private LocalVariable[] localVariableTable; // variables

/**
* Construct object from input stream.
* Constructs object from input stream.
*
* @param nameIndex Index in constant pool
* @param length Content length in bytes
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/classfile/Method.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public Method() {
}

/**
* Construct object from file stream.
* Constructs object from file stream.
*
* @param file Input stream
* @throws IOException if an I/O error occurs.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/classfile/Module.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public final class Module extends Attribute {
private ModuleProvides[] providesTable;

/**
* Construct object from input stream.
* Constructs object from input stream.
*
* @param nameIndex Index in constant pool
* @param length Content length in bytes
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/classfile/ModuleExports.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public final class ModuleExports implements Cloneable, Node {
private final int[] exportsToIndex; // points to CONSTANT_Module_info

/**
* Construct object from file stream.
* Constructs object from file stream.
*
* @param file Input stream
* @throws IOException if an I/O Exception occurs in readUnsignedShort
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public final class ModuleMainClass extends Attribute {
private int mainClassIndex;

/**
* Construct object from input stream.
* Constructs object from input stream.
*
* @param nameIndex Index in constant pool
* @param length Content length in bytes
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/classfile/ModuleOpens.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public final class ModuleOpens implements Cloneable, Node {
private final int[] opensToIndex; // points to CONSTANT_Module_info

/**
* Construct object from file stream.
* Constructs object from file stream.
*
* @param file Input stream
* @throws IOException if an I/O Exception occurs in readUnsignedShort
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public final class ModulePackages extends Attribute {
private int[] packageIndexTable;

/**
* Construct object from input stream.
* Constructs object from input stream.
*
* @param nameIndex Index in constant pool
* @param length Content length in bytes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public final class ModuleProvides implements Cloneable, Node {
private final int[] providesWithIndex; // points to CONSTANT_Class_info

/**
* Construct object from file stream.
* Constructs object from file stream.
*
* @param file Input stream
* @throws IOException if an I/O Exception occurs in readUnsignedShort
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public final class ModuleRequires implements Cloneable, Node {
private final int requiresVersionIndex; // either 0 or points to CONSTANT_Utf8_info

/**
* Construct object from file stream.
* Constructs object from file stream.
*
* @param file Input stream
* @throws IOException if an I/O Exception occurs in readUnsignedShort
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/classfile/NestMembers.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public final class NestMembers extends Attribute {
private int[] classes;

/**
* Construct object from input stream.
* Constructs object from input stream.
*
* @param nameIndex Index in constant pool
* @param length Content length in bytes
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/classfile/PMGClass.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public final class PMGClass extends Attribute {
private int pmgIndex;

/**
* Construct object from input stream.
* Constructs object from input stream.
*
* @param nameIndex Index in constant pool to CONSTANT_Utf8
* @param length Content length in bytes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static ParameterAnnotationEntry[] createParameterAnnotationEntries(final
private final AnnotationEntry[] annotationTable;

/**
* Construct object from input stream.
* Constructs object from input stream.
*
* @param input Input stream
* @throws IOException if an I/O error occurs.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/classfile/Signature.java
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public static String translate(final String s) {
private int signatureIndex;

/**
* Construct object from file stream.
* Constructs object from file stream.
*
* @param nameIndex Index in constant pool to CONSTANT_Utf8
* @param length Content length in bytes
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/classfile/SourceFile.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public final class SourceFile extends Attribute {
private int sourceFileIndex;

/**
* Construct object from input stream.
* Constructs object from input stream.
*
* @param nameIndex Index in constant pool to CONSTANT_Utf8
* @param length Content length in bytes
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/classfile/StackMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public final class StackMap extends Attribute {
private StackMapEntry[] table; // Table of stack map entries

/**
* Construct object from input stream.
* Constructs object from input stream.
*
* @param nameIndex Index of name
* @param length Content length in bytes
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/classfile/StackMapEntry.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public final class StackMapEntry implements Node, Cloneable {
private ConstantPool constantPool;

/**
* Construct object from input stream.
* Constructs object from input stream.
*
* @param dataInput Input stream
* @throws IOException if an I/O error occurs.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/classfile/StackMapType.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public StackMapType(final byte type, final int index, final ConstantPool constan
}

/**
* Construct object from file stream.
* Constructs object from file stream.
*
* @param file Input stream
* @throws IOException if an I/O error occurs.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/classfile/Synthetic.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public Synthetic(final int nameIndex, final int length, final byte[] bytes, fina
}

/**
* Construct object from input stream.
* Constructs object from input stream.
*
* @param nameIndex Index in constant pool to CONSTANT_Utf8
* @param length Content length in bytes
Expand Down

0 comments on commit 527d851

Please sign in to comment.