diff options
author | Jerry James <loganjerry@gmail.com> | 2020-09-14 08:27:01 -0600 |
---|---|---|
committer | Jerry James <loganjerry@gmail.com> | 2020-09-14 08:27:01 -0600 |
commit | de14ca22d72be35e59ce370ef0edf8626db6cd82 (patch) | |
tree | 746054ba7809fd6c7990a364dff0050a3fc7012e /org.aspectj.ajdt.core/src | |
parent | f8f117808bef16efd520803636c6841332e83c49 (diff) | |
download | aspectj-de14ca22d72be35e59ce370ef0edf8626db6cd82.tar.gz aspectj-de14ca22d72be35e59ce370ef0edf8626db6cd82.zip |
Fix misplaced or incorrect javadoc tags
Diffstat (limited to 'org.aspectj.ajdt.core/src')
3 files changed, 7 insertions, 8 deletions
diff --git a/org.aspectj.ajdt.core/src/main/java/org/aspectj/ajdt/internal/compiler/AjCompilerAdapter.java b/org.aspectj.ajdt.core/src/main/java/org/aspectj/ajdt/internal/compiler/AjCompilerAdapter.java index 664260cb5..dd9d9c0a9 100644 --- a/org.aspectj.ajdt.core/src/main/java/org/aspectj/ajdt/internal/compiler/AjCompilerAdapter.java +++ b/org.aspectj.ajdt.core/src/main/java/org/aspectj/ajdt/internal/compiler/AjCompilerAdapter.java @@ -76,8 +76,8 @@ public class AjCompilerAdapter extends AbstractCompilerAdapter { * @param weaver the weaver * @param intRequestor recipient of interim compilation results from compiler (pre-weave) * @param outputFileNameProvider implementor of a strategy providing output file names for results - * @param binarySourceEntries binary source that we didn't compile, but that we need to weave - * @param resultSetForFullWeave if we are doing an incremental build, and the weaver determines that we need to weave the world, + * @param binarySourceProvider binary source that we didn't compile, but that we need to weave + * @param incrementalCompilationState if we are doing an incremental build, and the weaver determines that we need to weave the world, * this is the set of intermediate results that will be passed to the weaver. */ public AjCompilerAdapter(Compiler compiler, boolean isBatchCompile, BcelWorld world, BcelWeaver weaver, diff --git a/org.aspectj.ajdt.core/src/main/java/org/aspectj/ajdt/internal/compiler/AjPipeliningCompilerAdapter.java b/org.aspectj.ajdt.core/src/main/java/org/aspectj/ajdt/internal/compiler/AjPipeliningCompilerAdapter.java index 5bfe243d5..e576ee0d3 100644 --- a/org.aspectj.ajdt.core/src/main/java/org/aspectj/ajdt/internal/compiler/AjPipeliningCompilerAdapter.java +++ b/org.aspectj.ajdt.core/src/main/java/org/aspectj/ajdt/internal/compiler/AjPipeliningCompilerAdapter.java @@ -135,8 +135,8 @@ public class AjPipeliningCompilerAdapter extends AbstractCompilerAdapter { * @param weaver the weaver * @param intRequestor recipient of interim compilation results from compiler (pre-weave) * @param outputFileNameProvider implementor of a strategy providing output file names for results - * @param binarySourceEntries binary source that we didn't compile, but that we need to weave - * @param resultSetForFullWeave if we are doing an incremental build, and the weaver determines that we need to weave the world, + * @param binarySourceProvider binary source that we didn't compile, but that we need to weave + * @param incrementalCompilationState if we are doing an incremental build, and the weaver determines that we need to weave the world, * this is the set of intermediate results that will be passed to the weaver. */ public AjPipeliningCompilerAdapter(Compiler compiler, boolean isBatchCompile, BcelWorld world, BcelWeaver weaver, diff --git a/org.aspectj.ajdt.core/src/main/java/org/aspectj/tools/ajc/Main.java b/org.aspectj.ajdt.core/src/main/java/org/aspectj/tools/ajc/Main.java index e372b5527..7cbc3e341 100644 --- a/org.aspectj.ajdt.core/src/main/java/org/aspectj/tools/ajc/Main.java +++ b/org.aspectj.ajdt.core/src/main/java/org/aspectj/tools/ajc/Main.java @@ -87,15 +87,15 @@ public class Main { /** * Convenience method to run ajc and collect String lists of messages. This can be reflectively invoked with the List collecting * parameters supplied by a parent class loader. The String messages take the same form as command-line messages. + * This method does not catch unchecked exceptions thrown by the compiler. * * @param args the String[] args to pass to the compiler * @param useSystemExit if true and errors, return System.exit(errs) * @param fails the List sink, if any, for String failure (or worse) messages * @param errors the List sink, if any, for String error messages * @param warnings the List sink, if any, for String warning messages - * @param info the List sink, if any, for String info messages + * @param infos the List sink, if any, for String info messages * @return number of messages reported with level ERROR or above - * @throws any unchecked exceptions the compiler does */ public static int bareMain(String[] args, boolean useSystemExit, List fails, List errors, List warnings, List infos) { Main main = new Main(); @@ -453,7 +453,6 @@ public class Main { * Call System.exit(int) with values derived from the number of failures/aborts or errors in messages. * * @param messages the IMessageHolder to interrogate. - * @param messages */ protected void systemExit(IMessageHolder messages) { int num = lastFails; // messages.numMessages(IMessage.FAIL, true); @@ -725,7 +724,7 @@ public class Main { } /** - * @param argList read and strip incremental args from this + * @param args read and strip incremental args from this * @param sink IMessageHandler for error messages * @return String[] remainder of args */ |