Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Aug 21, 2024
1 parent 31da7a8 commit 3721d80
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/examples/TransitiveHull.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
* Compute the transitive hull of classes used by a given class. This is done by checking all ConstantClass entries and
* all method and field signatures.
* <p>
* This may be useful in order to put all class files of an application into a single JAR file, e.g..
* This may be useful in order to put all class files of an application into a single JAR file.
* </p>
* <p>
* It fails however in the presence of reflexive code aka introspection.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package org.apache.bcel.classfile;

/**
* This interface denotes those constants that have a "natural" value, such as ConstantLong, ConstantString, etc..
* This interface denotes those constants that have a "natural" value, such as ConstantLong, ConstantString, and so on.
*
* @see Constant
*/
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 @@ -156,7 +156,7 @@ public int hashCode() {
}

/**
* Return string representation close to declaration format, 'public static final short MAX = 100', e.g..
* Return string representation close to declaration format, for example: 'public static final short MAX = 100'.
*
* @return String representation of field, including the signature.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/bcel/generic/FieldGen.java
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ private void setValue(final int index) {
}

/**
* Return string representation close to declaration format, 'public static final short MAX = 100', e.g..
* Return string representation close to declaration format, for example: 'public static final short MAX = 100'.
*
* @return String representation of field
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package org.apache.bcel.generic;

/**
* Gets the type associated with an instruction, int for ILOAD, or the type of the field of a PUTFIELD instruction, e.g..
* Gets the type associated with an instruction, int for ILOAD, or the type of the field of a PUTFIELD instruction.
*/
public interface TypedInstruction {

Expand Down

0 comments on commit 3721d80

Please sign in to comment.