1
0
Fork 0
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:
Anton Leherbauer 2015-09-08 12:38:52 +02:00
parent aacd3c61cd
commit f1f1d06b78
2 changed files with 7 additions and 0 deletions

View file

@ -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 {
/**

View file

@ -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);
}