Fix javadocs

This commit is contained in:
md_5 2021-08-18 18:32:23 +10:00
parent 7ec7d4818f
commit d82596a49c
2 changed files with 20 additions and 14 deletions

View File

@ -42,22 +42,29 @@ import lombok.Getter;
/** /**
* Access mapper - for modifying access flags on symbols * Access mapper - for modifying access flags on symbols
* *
* Supports loading _at.cfg files in the following format: - comments beginning * Supports loading _at.cfg files in the following format:
* with '#' extending to end of line - symbol pattern, space, then access * <ul>
* changes * <li>comments beginning with '#' extending to end of line</li>
* <li>symbol pattern, space, then access changes</li>
* </ul>
* *
* Symbol pattern format: foo class foo/bar field foo/bar ()desc method foo/* * Symbol pattern format:
* fields in class foo/* ()desc methods in class * all classes * <pre>
* *<nobr/>/* all fields * foo class
* *<nobr/>/*() all methods ** all classes, fields, and methods * foo/bar field
* * foo/bar ()desc method
* Internal ('/') and source ('.') conventions are accepted, and the space * foo/* fields in class
* preceding the method descriptor is optional. * foo/* ()desc methods in class
* * all classes
* *&#47;* all fields
* *&#47;*() all methods
* ** all classes, fields, and methods
* </pre>
* Internal ('/') and source ('.') conventions are accepted,
* and the space preceding the method descriptor is optional.
* *
* Access change format: visibility (required) + access flags * Access change format: visibility (required) + access flags
*
* @see AccessChange * @see AccessChange
*
*/ */
public class AccessMap { public class AccessMap {
@ -205,7 +212,7 @@ public class AccessMap {
/** /**
* Called when an access mapping is applied. * Called when an access mapping is applied.
* *
* @param key the key which caused the mapping to be matched & applied * @param key the key which caused the mapping to be matched and applied
* @param oldAccess the access which was replaced * @param oldAccess the access which was replaced
* @param newAccess the new access which was applied by the mapping * @param newAccess the new access which was applied by the mapping
*/ */

View File

@ -65,7 +65,6 @@ public class RemapperProcessor {
* @param jarMapping Mapping for reflection remapping, or null to not remap * @param jarMapping Mapping for reflection remapping, or null to not remap
* reflection * reflection
* @param accessMap Access transformer mappings, or null to not apply AT * @param accessMap Access transformer mappings, or null to not apply AT
* @throws IOException
*/ */
public RemapperProcessor(InheritanceMap inheritanceMap, JarMapping jarMapping, AccessMap accessMap) { public RemapperProcessor(InheritanceMap inheritanceMap, JarMapping jarMapping, AccessMap accessMap) {
this.inheritanceMap = inheritanceMap; this.inheritanceMap = inheritanceMap;