Skip to content

Commit 064f2eb

Browse files
committed
Fix javadoc generation in terminal
1 parent 0c3de27 commit 064f2eb

File tree

15 files changed

+33
-45
lines changed

15 files changed

+33
-45
lines changed

terminal/plugins/org.eclipse.tm.terminal.control/src/org/eclipse/tm/internal/terminal/control/CommandInputFieldWithHistory.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@
4242
/**
4343
* Manages the Command History for the command line input
4444
* of the terminal control.
45-
* <li>
46-
* <ul>Navigate with ARROW_UP,ARROW_DOWN,PAGE_UP,PAGE_DOWN
47-
* <ul>ESC to cancel history editing
48-
* <ul>History can be edited (by moving up and edit) but changes are
49-
* not persistent (like in bash).
50-
* <ul>If the same command is entered multiple times in a row,
51-
* only one entry is kept in the history.
52-
* </li>
45+
* <ul>
46+
* <li>Navigate with ARROW_UP,ARROW_DOWN,PAGE_UP,PAGE_DOWN</li>
47+
* <li>ESC to cancel history editing</li>
48+
* <li>History can be edited (by moving up and edit) but changes are
49+
* not persistent (like in bash).</li>
50+
* <li>If the same command is entered multiple times in a row,
51+
* only one entry is kept in the history.</li>
52+
* </ul>
5353
*
5454
*/
5555
public class CommandInputFieldWithHistory implements ICommandInputField {

terminal/plugins/org.eclipse.tm.terminal.control/src/org/eclipse/tm/internal/terminal/control/ITerminalListener.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
*******************************************************************************/
1414
package org.eclipse.tm.internal.terminal.control;
1515

16+
import org.eclipse.tm.internal.terminal.control.ITerminalListener3.TerminalTitleRequestor;
1617
import org.eclipse.tm.internal.terminal.provisional.api.TerminalState;
1718

1819
/**
@@ -29,7 +30,7 @@ public interface ITerminalListener {
2930

3031
/**
3132
* @deprecated Migrate to implementing {@link ITerminalListener3} and
32-
* override {@link ITerminalListener3#setTerminalTitle(String, String)
33+
* override {@link ITerminalListener3#setTerminalTitle(String, TerminalTitleRequestor)}
3334
* @param title
3435
*/
3536
@Deprecated(forRemoval = true)

terminal/plugins/org.eclipse.tm.terminal.control/src/org/eclipse/tm/internal/terminal/control/ITerminalListener3.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/**
1313
* Terminal listener allowing to listen to terminal selection changes.
1414
* The interface overrides the deprecated {@link #setTerminalTitle(String)} with
15-
* {@link #setTerminalTitle(String, String)} that should be called instead.
15+
* {@link #setTerminalTitle(String, TerminalTitleRequestor)} that should be called instead.
1616
*
1717
* @since 5.5
1818
*/

terminal/plugins/org.eclipse.tm.terminal.control/src/org/eclipse/tm/internal/terminal/control/ITerminalViewControl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ public interface ITerminalViewControl {
194194

195195
/**
196196
* @since 5.1
197-
* @deprecated call {@link #setTerminalTitle(String, String)} instead
197+
* @deprecated call {@link #setTerminalTitle(String, TerminalTitleRequestor)} instead
198198
*/
199199
@Deprecated(forRemoval = true)
200200
void setTerminalTitle(String newTitle);

terminal/plugins/org.eclipse.tm.terminal.control/src/org/eclipse/tm/internal/terminal/emulator/IVT100EmulatorBackend.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public interface IVT100EmulatorBackend {
121121
* There are never any ANSI control characters or escape sequences in the
122122
* text being displayed by this method (this includes newlines, carriage
123123
* returns, and tabs).
124-
* <p>
124+
* </p>
125125
*/
126126
void appendString(String buffer);
127127

@@ -143,7 +143,7 @@ public interface IVT100EmulatorBackend {
143143
* code) _always_ interprets a CR to mean "move the cursor to the beginning
144144
* of the current line" and a NL to mean "move the cursor to the same column
145145
* on the next line".
146-
* <p>
146+
* </p>
147147
*/
148148
void processNewline();
149149

terminal/plugins/org.eclipse.tm.terminal.control/src/org/eclipse/tm/internal/terminal/emulator/VT100Emulator.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,6 @@
6060
* return, linefeed, and a subset of ANSI escape sequences sufficient to allow
6161
* use of screen-oriented applications, such as vi, Emacs, and any GNU
6262
* readline-enabled application (Bash, bc, ncftp, etc.).
63-
* <p>
64-
*
65-
* @author Fran Litterio <[email protected]>
66-
* @author Chris Thew <[email protected]>
6763
*/
6864
public class VT100Emulator implements ControlListener {
6965
/** This is a character processing state: Initial state. */

terminal/plugins/org.eclipse.tm.terminal.control/src/org/eclipse/tm/internal/terminal/emulator/VT100TerminalControl.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,6 @@
132132
* methods in the nested classes directly access the fields of the enclosing class.
133133
* One day we should pull the nested classes out into their own source files (but still
134134
* in this package).
135-
*
136-
* @author Chris Thew <[email protected]>
137135
*/
138136
public class VT100TerminalControl implements ITerminalControlForText, ITerminalControl, ITerminalViewControl {
139137
protected final static String[] LINE_DELIMITERS = { "\n" }; //$NON-NLS-1$

terminal/plugins/org.eclipse.tm.terminal.control/src/org/eclipse/tm/internal/terminal/preferences/TerminalColorsFieldEditor.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@ public class TerminalColorsFieldEditor extends FieldEditor {
6262

6363
/**
6464
* Creates a field editor for editing colors of {@link TerminalColor}.
65-
* The preference names used are as they are returned from {@link TerminalColor#getPreferenceName()}
66-
* @param parent
6765
*/
6866
public TerminalColorsFieldEditor(Composite parent) {
6967
super("", "", parent); //$NON-NLS-1$ //$NON-NLS-2$

terminal/plugins/org.eclipse.tm.terminal.control/src/org/eclipse/tm/internal/terminal/provisional/api/ITerminalControl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ public interface ITerminalControl {
156156
OutputStream getRemoteToTerminalOutputStream();
157157

158158
/**
159-
* @deprecated call {@link #setTerminalTitle(String, String)} instead
159+
* @deprecated call {@link #setTerminalTitle(String, TerminalTitleRequestor)} instead
160160
*/
161161
@Deprecated(forRemoval = true)
162162
void setTerminalTitle(String title);

terminal/plugins/org.eclipse.tm.terminal.control/src/org/eclipse/tm/internal/terminal/provisional/api/Logger.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,12 @@
3030
* A simple logger class. Every method in this class is static, so they can be
3131
* called from both class and instance methods. To use this class, write code
3232
* like this:
33-
* <p>
3433
*
3534
* <pre>
3635
* Logger.log(&quot;something has happened&quot;);
3736
* Logger.log(&quot;counter is &quot; + counter);
3837
* </pre>
3938
*
40-
* @author Fran Litterio <[email protected]>
4139
* <p>
4240
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as
4341
* part of a work in progress. There is no guarantee that this API will

0 commit comments

Comments
 (0)