Skip to content

Commit

Permalink
Merge branch 'latest' of https://github.com/classgraph/classgraph int…
Browse files Browse the repository at this point in the history
…o latest
  • Loading branch information
lukehutch committed Dec 10, 2022
2 parents a7711bd + 3e9078e commit a362cfd
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/main/java/io/github/classgraph/ClassMemberInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,18 @@ public abstract class ClassMemberInfo extends ScanResultObject implements HasNam
/** The name of the class member. */
protected String name;

/** Method modifiers. */
/** Class member modifiers. */
protected int modifiers;

/**
* The JVM-internal type descriptor (missing type parameters, but including types for synthetic and mandated
* method parameters).
* class member parameters).
*/
protected String typeDescriptorStr;

/**
* The type signature (may have type parameter information included, if present and available). Method parameter
* types are unaligned.
* The type signature (may have type parameter information included, if present and available). Class member
* parameter types are unaligned.
*/
protected String typeSignatureStr;

Expand All @@ -76,13 +76,13 @@ public abstract class ClassMemberInfo extends ScanResultObject implements HasNam
* @param memberName
* The name of the class member.
* @param modifiers
* The field modifiers.
* The class member modifiers.
* @param typeDescriptorStr
* The field type descriptor.
* The class member type descriptor.
* @param typeSignatureStr
* The field type signature.
* The class member type signature.
* @param annotationInfo
* {@link AnnotationInfo} for any annotations on the field.
* {@link AnnotationInfo} for any annotations on the class member.
*/
public ClassMemberInfo(final String definingClassName, final String memberName, final int modifiers,
final String typeDescriptorStr, final String typeSignatureStr,
Expand All @@ -99,7 +99,7 @@ public ClassMemberInfo(final String definingClassName, final String memberName,
// -------------------------------------------------------------------------------------------------------------

/**
* Get the {@link ClassInfo} object for the class that declares this method.
* Get the {@link ClassInfo} object for the class that declares this class member.
*
* @return The {@link ClassInfo} object for the declaring class.
*
Expand All @@ -123,9 +123,9 @@ public String getClassName() {
}

/**
* Get the name of the field.
* Get the name of the class member.
*
* @return The name of the field.
* @return The name of the class member.
*/
@Override
public String getName() {
Expand All @@ -135,9 +135,9 @@ public String getName() {
// -------------------------------------------------------------------------------------------------------------

/**
* Returns the modifier bits for the method.
* Returns the modifier bits for the class member.
*
* @return The modifier bits for the method.
* @return The modifier bits for the class member.
*/
public int getModifiers() {
return modifiers;
Expand Down

0 comments on commit a362cfd

Please sign in to comment.