mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-05 07:15:39 +02:00
Add @since tags to newly added API
This commit is contained in:
parent
59bc7aaf9c
commit
51f92ed895
3 changed files with 7 additions and 0 deletions
|
@ -37,6 +37,8 @@ public interface ITerminalListener {
|
||||||
* NOTE: this does not include mouse selections
|
* NOTE: this does not include mouse selections
|
||||||
* those are handled in separate MouseListeners
|
* those are handled in separate MouseListeners
|
||||||
* TODO should be unified
|
* TODO should be unified
|
||||||
|
*
|
||||||
|
* @since 4.1
|
||||||
*/
|
*/
|
||||||
void setTerminalSelectionChanged();
|
void setTerminalSelectionChanged();
|
||||||
}
|
}
|
||||||
|
|
|
@ -344,6 +344,9 @@ public class TextCanvas extends GridCanvas {
|
||||||
fCellCanvasModel.setSelectionAnchor(new Point(0,0));
|
fCellCanvasModel.setSelectionAnchor(new Point(0,0));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 4.1
|
||||||
|
*/
|
||||||
public void clearSelection() {
|
public void clearSelection() {
|
||||||
fCellCanvasModel.setSelection(-1,-1,-1,-1);
|
fCellCanvasModel.setSelection(-1,-1,-1,-1);
|
||||||
}
|
}
|
||||||
|
|
|
@ -773,6 +773,8 @@ public class TabFolderManager extends PlatformObject implements ISelectionProvid
|
||||||
* Fire the selection changed event with the terminal text!
|
* Fire the selection changed event with the terminal text!
|
||||||
* to the registered listeners.
|
* to the registered listeners.
|
||||||
* see also TerminalControlSelectionListener- mouseUp
|
* see also TerminalControlSelectionListener- mouseUp
|
||||||
|
*
|
||||||
|
* @since 4.1
|
||||||
*/
|
*/
|
||||||
protected void fireTerminalSelectionChanged() {
|
protected void fireTerminalSelectionChanged() {
|
||||||
updateStatusLine();
|
updateStatusLine();
|
||||||
|
|
Loading…
Add table
Reference in a new issue