diff --git a/app/src/processing/app/contrib/ExamplesContribution.java b/app/src/processing/app/contrib/ExamplesContribution.java index aa7a14fb7..be4782e4b 100644 --- a/app/src/processing/app/contrib/ExamplesContribution.java +++ b/app/src/processing/app/contrib/ExamplesContribution.java @@ -52,7 +52,7 @@ public class ExamplesContribution extends LocalContribution { * exampleLocation directory is compatible with the current mode. * * @param base - * @param exampleFolder + * @param props * @return true if the example is compatible with the mode of the currently * active editor */ diff --git a/app/src/processing/app/syntax/SyntaxStyle.java b/app/src/processing/app/syntax/SyntaxStyle.java index 9415a4bf0..39c540781 100644 --- a/app/src/processing/app/syntax/SyntaxStyle.java +++ b/app/src/processing/app/syntax/SyntaxStyle.java @@ -30,9 +30,9 @@ public class SyntaxStyle { /** * Creates a new SyntaxStyle. * @param color The text color - * @param italic True if the text should be italics * @param bold True if the text should be bold */ +// * @param italic True if the text should be italics // public SyntaxStyle(Color color, boolean italic, boolean bold) { public SyntaxStyle(Color color, boolean bold) { this.color = color; diff --git a/app/src/processing/app/syntax/im/CompositionTextManager.java b/app/src/processing/app/syntax/im/CompositionTextManager.java index 04fbe5f74..d37441f2c 100644 --- a/app/src/processing/app/syntax/im/CompositionTextManager.java +++ b/app/src/processing/app/syntax/im/CompositionTextManager.java @@ -77,7 +77,7 @@ public class CompositionTextManager { * This method initializes text manager. * * @param text Text from InputMethodEvent. - * @param commited_count Numbers of committed characters in text. + * @param committed_count Numbers of committed characters in text. */ public void beginCompositionText(AttributedCharacterIterator text, int committed_count) { isInputProcess = true; @@ -91,7 +91,7 @@ public class CompositionTextManager { * select candidates from input method. * * @param text Text from InputMethodEvent. - * @param commited_count Numbers of committed characters in text. + * @param committed_count Numbers of committed characters in text. */ public void processCompositionText(AttributedCharacterIterator text, int committed_count) { int layoutCaretPosition = initialCaretPosition + committed_count; @@ -129,7 +129,7 @@ public class CompositionTextManager { * composition text. This method resets CompositionTextPainter. * * @param text Text from InputMethodEvent. - * @param commited_count Numbers of committed characters in text. + * @param committed_count Numbers of committed characters in text. */ public void endCompositionText(AttributedCharacterIterator text, int committed_count) { /* diff --git a/app/src/processing/app/syntax/im/CompositionTextPainter.java b/app/src/processing/app/syntax/im/CompositionTextPainter.java index bb0e43e98..4a53dd5ed 100644 --- a/app/src/processing/app/syntax/im/CompositionTextPainter.java +++ b/app/src/processing/app/syntax/im/CompositionTextPainter.java @@ -43,7 +43,6 @@ public class CompositionTextPainter { /** * Check the painter has TextLayout. * If a user input via InputMethod, this result will return true. - * @param textarea textarea used by PDE. */ public boolean hasComposedTextLayout() { return (composedTextLayout != null); @@ -55,7 +54,6 @@ public class CompositionTextPainter { * TextLayout will be created and set by CompositionTextManager. * * @see CompositionTextManager - * @param textarea textarea used by PDE. */ public void setComposedTextLayout(TextLayout composedTextLayout, int composedStartCaretPosition) { this.composedTextLayout = composedTextLayout; diff --git a/app/src/processing/app/syntax/im/InputMethodSupport.java b/app/src/processing/app/syntax/im/InputMethodSupport.java index 9df319b99..c7a36da56 100644 --- a/app/src/processing/app/syntax/im/InputMethodSupport.java +++ b/app/src/processing/app/syntax/im/InputMethodSupport.java @@ -32,8 +32,9 @@ import processing.app.syntax.TextAreaPainter; * * @see Bug 854 : implement input method support for Japanese (and other languages) * @see Bug 1531 : Can't input full-width space when Japanese IME is on. - * @see http://docs.oracle.com/javase/8/docs/technotes/guides/imf/index.html - * @see http://docs.oracle.com/javase/tutorial/2d/text/index.html + * @see Java Input Method Framework + * (IMF) Technology + * @see The Java Tutorials * * @author Takashi Maekawa (takachin@generative.info) * @author Satoshi Okita diff --git a/build/.gitignore b/build/.gitignore index a340c103d..290988977 100644 --- a/build/.gitignore +++ b/build/.gitignore @@ -1 +1,2 @@ -work \ No newline at end of file +work +javadoc diff --git a/build/build.xml b/build/build.xml index 5967728e9..798f4f360 100644 --- a/build/build.xml +++ b/build/build.xml @@ -1269,6 +1269,11 @@ remove the spaces for depth since it should be double dash, but screws up commen + + + + + @@ -1285,6 +1290,16 @@ remove the spaces for depth since it should be double dash, but screws up commen + + + + + + + + + + @@ -1303,7 +1318,7 @@ remove the spaces for depth since it should be double dash, but screws up commen - + @@ -1317,6 +1332,14 @@ remove the spaces for depth since it should be double dash, but screws up commen + + + + + + + +