Skip to content

Commit dd35208

Browse files
committed
Fix javadoc
1 parent 17979af commit dd35208

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,18 @@
1919
*/
2020
public interface ICommandInputField {
2121
/**
22-
* @param parent
23-
* @param terminal
22+
* Create Control
23+
*
24+
* @param parent the parent of the input field
25+
* @param terminal the terminal
2426
*/
2527
void createControl(Composite parent, ITerminalViewControl terminal);
2628

2729
void dispose();
2830

2931
/**
3032
* Sets the font of a control created with {@link #createControl(Composite, ITerminalViewControl)}
31-
* @param control
33+
*
3234
* @param font the new text font
3335
*/
3436
void setFont(Font font);

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,10 @@ public interface ITerminalViewControl {
142142
void connectTerminal();
143143

144144
/**
145-
* @param write a single character to terminal
145+
* write a single character to terminal
146+
* @param c char to write
146147
*/
147-
void sendKey(char arg0);
148+
void sendKey(char c);
148149

149150
/**
150151
* @param string write string to terminal

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
@@ -202,8 +202,6 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
202202
* @param target Callback for notifying the owner of Terminal state changes.
203203
* @param wndParent The Window parent to embed the Terminal in.
204204
* @param connectors Provided connectors.
205-
* @param preferenceStore If non-<code>null</code>, the Terminal widget will pick up settings
206-
* from the given store.
207205
* @since 3.2
208206
*/
209207
public VT100TerminalControl(ITerminalListener target, Composite wndParent, ITerminalConnector[] connectors) {

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ public class TerminalColorsFieldEditor extends FieldEditor {
6363
/**
6464
* Creates a field editor for editing colors of {@link TerminalColor}.
6565
* The preference names used are as they are returned from {@link TerminalColor#getPreferenceName()}
66-
* @param labelText
6766
* @param parent
6867
*/
6968
public TerminalColorsFieldEditor(Composite parent) {

0 commit comments

Comments
 (0)