Skip to content

Commit a362cfd

Browse files
committed
Merge branch 'latest' of https://github.com/classgraph/classgraph into latest
2 parents a7711bd + 3e9078e commit a362cfd

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

src/main/java/io/github/classgraph/ClassMemberInfo.java

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,18 @@ public abstract class ClassMemberInfo extends ScanResultObject implements HasNam
4545
/** The name of the class member. */
4646
protected String name;
4747

48-
/** Method modifiers. */
48+
/** Class member modifiers. */
4949
protected int modifiers;
5050

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

5757
/**
58-
* The type signature (may have type parameter information included, if present and available). Method parameter
59-
* types are unaligned.
58+
* The type signature (may have type parameter information included, if present and available). Class member
59+
* parameter types are unaligned.
6060
*/
6161
protected String typeSignatureStr;
6262

@@ -76,13 +76,13 @@ public abstract class ClassMemberInfo extends ScanResultObject implements HasNam
7676
* @param memberName
7777
* The name of the class member.
7878
* @param modifiers
79-
* The field modifiers.
79+
* The class member modifiers.
8080
* @param typeDescriptorStr
81-
* The field type descriptor.
81+
* The class member type descriptor.
8282
* @param typeSignatureStr
83-
* The field type signature.
83+
* The class member type signature.
8484
* @param annotationInfo
85-
* {@link AnnotationInfo} for any annotations on the field.
85+
* {@link AnnotationInfo} for any annotations on the class member.
8686
*/
8787
public ClassMemberInfo(final String definingClassName, final String memberName, final int modifiers,
8888
final String typeDescriptorStr, final String typeSignatureStr,
@@ -99,7 +99,7 @@ public ClassMemberInfo(final String definingClassName, final String memberName,
9999
// -------------------------------------------------------------------------------------------------------------
100100

101101
/**
102-
* Get the {@link ClassInfo} object for the class that declares this method.
102+
* Get the {@link ClassInfo} object for the class that declares this class member.
103103
*
104104
* @return The {@link ClassInfo} object for the declaring class.
105105
*
@@ -123,9 +123,9 @@ public String getClassName() {
123123
}
124124

125125
/**
126-
* Get the name of the field.
126+
* Get the name of the class member.
127127
*
128-
* @return The name of the field.
128+
* @return The name of the class member.
129129
*/
130130
@Override
131131
public String getName() {
@@ -135,9 +135,9 @@ public String getName() {
135135
// -------------------------------------------------------------------------------------------------------------
136136

137137
/**
138-
* Returns the modifier bits for the method.
138+
* Returns the modifier bits for the class member.
139139
*
140-
* @return The modifier bits for the method.
140+
* @return The modifier bits for the class member.
141141
*/
142142
public int getModifiers() {
143143
return modifiers;

0 commit comments

Comments
 (0)