Skip to content

Commit 945b92e

Browse files
committed
tmf: Fix @SInCE tags
Signed-off-by: Patrick Tasse <patrick.tasse@gmail.com>
1 parent 04a86a2 commit 945b92e

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

tmf/org.eclipse.tracecompass.tmf.core/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %Bundle-Name
44
Bundle-Vendor: %Bundle-Vendor
5-
Bundle-Version: 9.4.0.qualifier
5+
Bundle-Version: 9.5.0.qualifier
66
Bundle-Localization: plugin
77
Bundle-SymbolicName: org.eclipse.tracecompass.tmf.core;singleton:=true
88
Bundle-Activator: org.eclipse.tracecompass.internal.tmf.core.Activator

tmf/org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/tmf/core/event/aspect/ITmfEventAspect.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ default boolean isHiddenByDefault() {
115115
* The data type is considered as String by default
116116
*
117117
* @return the data type of the aspect
118-
* @since 10.0
118+
* @since 9.5
119119
*/
120120
default DataType getDataType() {
121121
return DataType.STRING;

tmf/org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/tmf/core/model/tree/ITmfTreeDataModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ default boolean hasRowModel() {
8989
* Get the type of the data tree
9090
*
9191
* @return the corresponding data type of the data tree
92-
* @since 10.0
92+
* @since 9.5
9393
*/
9494
default DataType getDataType() {
9595
return DataType.STRING;

tmf/org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/tmf/core/model/tree/TmfTreeDataModel.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public TmfTreeDataModel(long id, long parentId, List<String> labels) {
7474
* The labels of this model
7575
* @param dataType
7676
* The data type of this model
77-
* @since 10.0
77+
* @since 9.5
7878
*/
7979
public TmfTreeDataModel(long id, long parentId, List<String> labels, DataType dataType) {
8080
this(id, parentId, labels, true, null, dataType);
@@ -91,7 +91,7 @@ public TmfTreeDataModel(long id, long parentId, List<String> labels, DataType da
9191
* The labels of this model
9292
* @param hasRowModel
9393
* Whether this entry has data or not
94-
* @since 9.3
94+
* @since 9.5
9595
*/
9696
public TmfTreeDataModel(long id, long parentId, List<String> labels, boolean hasRowModel) {
9797
this(id, parentId, labels, hasRowModel, null, null);
@@ -133,7 +133,7 @@ public TmfTreeDataModel(long id, long parentId, List<String> labels, boolean has
133133
* The style of this entry
134134
* @param dataType
135135
* The data type of this entry
136-
* @since 10.0
136+
* @since 9.5
137137
*/
138138
public TmfTreeDataModel(long id, long parentId, List<String> labels, boolean hasRowModel, @Nullable OutputElementStyle style, @Nullable DataType dataType) {
139139
fId = id;

tmf/org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/tmf/core/segment/ISegmentAspect.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ default SegmentType getType() {
127127
* The data type is considered as String by default
128128
*
129129
* @return the data type of the aspect
130-
* @since 10.0
130+
* @since 9.5
131131
*/
132132
default DataType getDataType() {
133133
return DataType.STRING;

0 commit comments

Comments
 (0)