Skip to content

Commit

Permalink
tmf: Fix @SInCE tags
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Tasse <[email protected]>
  • Loading branch information
PatrickTasse committed Sep 17, 2024
1 parent b2bf1b8 commit a3dbc07
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tmf/org.eclipse.tracecompass.tmf.core/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name
Bundle-Vendor: %Bundle-Vendor
Bundle-Version: 9.4.0.qualifier
Bundle-Version: 9.5.0.qualifier
Bundle-Localization: plugin
Bundle-SymbolicName: org.eclipse.tracecompass.tmf.core;singleton:=true
Bundle-Activator: org.eclipse.tracecompass.internal.tmf.core.Activator
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ default boolean isHiddenByDefault() {
* The data type is considered as String by default
*
* @return the data type of the aspect
* @since 10.0
* @since 9.5
*/
default DataType getDataType() {
return DataType.STRING;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ default boolean hasRowModel() {
* Get the type of the data tree
*
* @return the corresponding data type of the data tree
* @since 10.0
* @since 9.5
*/
default DataType getDataType() {
return DataType.STRING;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public TmfTreeDataModel(long id, long parentId, List<String> labels) {
* The labels of this model
* @param dataType
* The data type of this model
* @since 10.0
* @since 9.5
*/
public TmfTreeDataModel(long id, long parentId, List<String> labels, DataType dataType) {
this(id, parentId, labels, true, null, dataType);
Expand All @@ -91,7 +91,7 @@ public TmfTreeDataModel(long id, long parentId, List<String> labels, DataType da
* The labels of this model
* @param hasRowModel
* Whether this entry has data or not
* @since 9.3
* @since 9.5
*/
public TmfTreeDataModel(long id, long parentId, List<String> labels, boolean hasRowModel) {
this(id, parentId, labels, hasRowModel, null, null);
Expand Down Expand Up @@ -133,7 +133,7 @@ public TmfTreeDataModel(long id, long parentId, List<String> labels, boolean has
* The style of this entry
* @param dataType
* The data type of this entry
* @since 10.0
* @since 9.5
*/
public TmfTreeDataModel(long id, long parentId, List<String> labels, boolean hasRowModel, @Nullable OutputElementStyle style, @Nullable DataType dataType) {
fId = id;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ default SegmentType getType() {
* The data type is considered as String by default
*
* @return the data type of the aspect
* @since 10.0
* @since 9.5
*/
default DataType getDataType() {
return DataType.STRING;
Expand Down

0 comments on commit a3dbc07

Please sign in to comment.