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 /ajde | |
parent | f8f117808bef16efd520803636c6841332e83c49 (diff) | |
download | aspectj-de14ca22d72be35e59ce370ef0edf8626db6cd82.tar.gz aspectj-de14ca22d72be35e59ce370ef0edf8626db6cd82.zip |
Fix misplaced or incorrect javadoc tags
Diffstat (limited to 'ajde')
6 files changed, 9 insertions, 10 deletions
diff --git a/ajde/src/main/java/org/aspectj/ajde/Ajde.java b/ajde/src/main/java/org/aspectj/ajde/Ajde.java index 14995d75d..1446e8278 100644 --- a/ajde/src/main/java/org/aspectj/ajde/Ajde.java +++ b/ajde/src/main/java/org/aspectj/ajde/Ajde.java @@ -160,7 +160,6 @@ public class Ajde { * Utility to run the project main class from the project properties in the same VM using a class loader populated with the * classpath and output path or jar. Errors are logged to the ErrorHandler. * - * @param project the ProjectPropertiesAdapter specifying the main class, classpath, and executable arguments. * @return Thread running with process, or null if unable to start */ public Thread runInSameVM() { diff --git a/ajde/src/main/java/org/aspectj/ajde/internal/BuildConfigManager.java b/ajde/src/main/java/org/aspectj/ajde/internal/BuildConfigManager.java index d61cbc6b3..310662335 100644 --- a/ajde/src/main/java/org/aspectj/ajde/internal/BuildConfigManager.java +++ b/ajde/src/main/java/org/aspectj/ajde/internal/BuildConfigManager.java @@ -39,7 +39,7 @@ public interface BuildConfigManager { /** * Sets the currently active build configuration file. * - * @param full path to the file + * @param currConfigFilePath full path to the file */ void setActiveConfigFile(String currConfigFilePath); @@ -56,7 +56,7 @@ public interface BuildConfigManager { /** * Build a model for the corresponding configuration file. * - * @param full path to the file + * @param configFilePath full path to the file */ BuildConfigModel buildModel(String configFilePath); diff --git a/ajde/src/main/java/org/aspectj/ajde/ui/BuildConfigEditor.java b/ajde/src/main/java/org/aspectj/ajde/ui/BuildConfigEditor.java index a56fc51b0..8e7d26e58 100644 --- a/ajde/src/main/java/org/aspectj/ajde/ui/BuildConfigEditor.java +++ b/ajde/src/main/java/org/aspectj/ajde/ui/BuildConfigEditor.java @@ -22,7 +22,7 @@ import java.io.IOException; public interface BuildConfigEditor { /** - * @param the full path to the file resource to be opened + * @param filePath the full path to the file resource to be opened */ void openFile(String filePath) throws IOException, InvalidResourceException; } diff --git a/ajde/src/main/java/org/aspectj/ajde/ui/internal/TreeStructureViewBuilder.java b/ajde/src/main/java/org/aspectj/ajde/ui/internal/TreeStructureViewBuilder.java index a8a07ee34..9d885396d 100644 --- a/ajde/src/main/java/org/aspectj/ajde/ui/internal/TreeStructureViewBuilder.java +++ b/ajde/src/main/java/org/aspectj/ajde/ui/internal/TreeStructureViewBuilder.java @@ -43,7 +43,7 @@ public class TreeStructureViewBuilder { } /** - * @todo get rid of instanceof tests + * <b>TODO</b>: get rid of instanceof tests */ public void buildView(StructureView view, IHierarchy model) { // StructureViewProperties properties = view.getViewProperties(); diff --git a/ajde/src/main/java/org/aspectj/ajde/ui/swing/BuildProgressPanel.java b/ajde/src/main/java/org/aspectj/ajde/ui/swing/BuildProgressPanel.java index 8b778cd8a..ac8dcf2a0 100644 --- a/ajde/src/main/java/org/aspectj/ajde/ui/swing/BuildProgressPanel.java +++ b/ajde/src/main/java/org/aspectj/ajde/ui/swing/BuildProgressPanel.java @@ -45,10 +45,6 @@ public class BuildProgressPanel extends JPanel { private boolean buildIsCancelled = false; - /** - * @param maxVal the value to which value to which the progress bar will - * count up to (in seconds) - */ public BuildProgressPanel() { try { jbInit(); @@ -83,6 +79,10 @@ public class BuildProgressPanel extends JPanel { compile_progressBar.setValue(newVal); } + /** + * @param maxVal the value to which value to which the progress bar will + * count up to (in seconds) + */ public void setProgressBarMax(int maxVal) { compile_progressBar.setMaximum(maxVal); } diff --git a/ajde/testdata/examples/spacewar/spacewar/Game.java b/ajde/testdata/examples/spacewar/spacewar/Game.java index da67d7bc3..54b1bf2ac 100644 --- a/ajde/testdata/examples/spacewar/spacewar/Game.java +++ b/ajde/testdata/examples/spacewar/spacewar/Game.java @@ -68,7 +68,7 @@ public class Game extends Thread { * thread. You can instantiate multiple games at once. For the time being * the only way to end the game is to exit from the Java VM. * - * @param isDemo Controls whether the game runs in demo mode or not. True + * @param mode Controls whether the game runs in demo mode or not. True * means it is a demo, false means it runs in normal 2 player mode. */ public Game(String mode) { |