mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 22:22:11 +02:00
Fix missing @since tags on new mouse listener API
This commit is contained in:
parent
aacd3c61cd
commit
f1f1d06b78
2 changed files with 7 additions and 0 deletions
|
@ -13,6 +13,7 @@ import org.eclipse.tm.terminal.model.ITerminalTextDataReadOnly;
|
|||
|
||||
/**
|
||||
* Terminal specific version of {@link org.eclipse.swt.events.MouseListener}
|
||||
* @since 4.1
|
||||
*/
|
||||
public interface ITerminalMouseListener {
|
||||
/**
|
||||
|
|
|
@ -120,6 +120,12 @@ public interface ITerminalViewControl {
|
|||
boolean isScrollLock();
|
||||
void setScrollLock(boolean on);
|
||||
|
||||
/**
|
||||
* @since 4.1
|
||||
*/
|
||||
void addMouseListener(ITerminalMouseListener listener);
|
||||
/**
|
||||
* @since 4.1
|
||||
*/
|
||||
void removeMouseListener(ITerminalMouseListener listener);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue