Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Ferrazzutti2013-12-09 19:25:48 +0000
committerAlexander Kurtakov2013-12-09 19:31:51 +0000
commit5cd7ff25fad5b9d9dc78e821daa25d7c09208df0 (patch)
tree1dc75a5cc57537d1a7c8cb2a5d8f28b303e415e8
parente58e7f80bebdfceac0386e3350bd1c9390215725 (diff)
downloadorg.eclipse.linuxtools-5cd7ff25fad5b9d9dc78e821daa25d7c09208df0.tar.gz
org.eclipse.linuxtools-5cd7ff25fad5b9d9dc78e821daa25d7c09208df0.tar.xz
org.eclipse.linuxtools-5cd7ff25fad5b9d9dc78e821daa25d7c09208df0.zip
Systemtap: Bump GraphSelectorEditor tags to 2.2.
Due to 1074d8f, bump up some method @since tags here to prevent API tooling warnings. Change-Id: I769aee163fe93ba7a209222458b284c5f25222ed Signed-off-by: Andrew Ferrazzutti <aferrazz@redhat.com> Reviewed-on: https://git.eclipse.org/r/19529 Reviewed-by: Alexander Kurtakov <akurtako@redhat.com> IP-Clean: Alexander Kurtakov <akurtako@redhat.com> Tested-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--systemtap/org.eclipse.linuxtools.systemtap.ui.graphing/src/org/eclipse/linuxtools/systemtap/ui/graphing/views/GraphSelectorEditor.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/systemtap/org.eclipse.linuxtools.systemtap.ui.graphing/src/org/eclipse/linuxtools/systemtap/ui/graphing/views/GraphSelectorEditor.java b/systemtap/org.eclipse.linuxtools.systemtap.ui.graphing/src/org/eclipse/linuxtools/systemtap/ui/graphing/views/GraphSelectorEditor.java
index b50117b251..664aa8eb55 100644
--- a/systemtap/org.eclipse.linuxtools.systemtap.ui.graphing/src/org/eclipse/linuxtools/systemtap/ui/graphing/views/GraphSelectorEditor.java
+++ b/systemtap/org.eclipse.linuxtools.systemtap.ui.graphing/src/org/eclipse/linuxtools/systemtap/ui/graphing/views/GraphSelectorEditor.java
@@ -90,7 +90,7 @@ public class GraphSelectorEditor extends EditorPart {
* @param scriptName The full name of the script that is being monitored.
* @param titles The names to be shown on each new tab
* @param dataSets The <code>IDataSet</code>s for each new script set
- * @since 2.1
+ * @since 2.2
*/
public void createScriptSets(String scriptName, List<String> titles, List<IDataSet> dataSets) {
CTabItem item = null;
@@ -111,7 +111,7 @@ public class GraphSelectorEditor extends EditorPart {
/**
* @return The current number of script sets (one for each regular expression being watched).
- * @since 2.1
+ * @since 2.2
*/
public int numberOfScriptSets() {
return displaySets.size();
@@ -174,7 +174,7 @@ public class GraphSelectorEditor extends EditorPart {
* @param index The index of the GraphDisplaySet to return
* @return The <code>GraphDisplaySet</code> of the provided
* index, or null if the index is out of range.
- * @since 2.1
+ * @since 2.2
*/
public GraphDisplaySet getDisplaySet(int index) {
if(index >= 0 && index < displaySets.size()) {

Back to the top