diff options
author | zaaarf <zaaarf@proton.me> | 2023-03-21 18:33:53 +0100 |
---|---|---|
committer | zaaarf <zaaarf@proton.me> | 2023-03-21 18:33:53 +0100 |
commit | 7e0b4e58dd9cf0c3d2f1b120ce21fe986d417f82 (patch) | |
tree | 8761fec9ec03d85047c24ac4831d6677387edde8 /src/main/java/ftbsc/lll/proxies/QualifiableProxy.java | |
parent | ff47129cf3ac12817bf4ca9af8753592298f03e4 (diff) |
chore: javadocs
Diffstat (limited to 'src/main/java/ftbsc/lll/proxies/QualifiableProxy.java')
-rw-r--r-- | src/main/java/ftbsc/lll/proxies/QualifiableProxy.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main/java/ftbsc/lll/proxies/QualifiableProxy.java b/src/main/java/ftbsc/lll/proxies/QualifiableProxy.java index adeb83d..885ddc8 100644 --- a/src/main/java/ftbsc/lll/proxies/QualifiableProxy.java +++ b/src/main/java/ftbsc/lll/proxies/QualifiableProxy.java @@ -22,7 +22,7 @@ public abstract class QualifiableProxy extends AbstractProxy { /** * The protected constructor, should be called by all classes extending this in theirs. - * @param type the {@link Type} for the element + * @param descriptor the descriptor for the element * @param modifiers the modifiers, as a packed int * @param parent the {@link QualifiableProxy} representing the parent of this element * @param fullyQualifiedName the FQN of the element @@ -36,6 +36,7 @@ public abstract class QualifiableProxy extends AbstractProxy { /** * Returns a {@link String} containing the FQN of the parent element * to this, which may represent a package or class. + * @param fqn the fully qualified name of the element * @return the parent, or null if the parent was the root element */ protected static String extractParentFromFQN(String fqn) { @@ -46,7 +47,8 @@ public abstract class QualifiableProxy extends AbstractProxy { } /** - * Returns a {@link String} containing the simple name of the element + * Returns a {@link String} containing the simple name of the element. + * @param fqn the fully qualified name of the element * @return the simple name */ protected static String extractSimpleNameFromFQN(String fqn) { |