mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 01:15:29 +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
|
||||
* those are handled in separate MouseListeners
|
||||
* TODO should be unified
|
||||
*
|
||||
* @since 4.1
|
||||
*/
|
||||
void setTerminalSelectionChanged();
|
||||
}
|
||||
|
|
|
@ -344,6 +344,9 @@ public class TextCanvas extends GridCanvas {
|
|||
fCellCanvasModel.setSelectionAnchor(new Point(0,0));
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 4.1
|
||||
*/
|
||||
public void clearSelection() {
|
||||
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!
|
||||
* to the registered listeners.
|
||||
* see also TerminalControlSelectionListener- mouseUp
|
||||
*
|
||||
* @since 4.1
|
||||
*/
|
||||
protected void fireTerminalSelectionChanged() {
|
||||
updateStatusLine();
|
||||
|
|
Loading…
Add table
Reference in a new issue