Skip to content

Commit 9fc7f7f

Browse files
Siwei Zhangbhufmann
authored andcommitted
swagger: add TREE_GENERIC_XY enum
Add TREE_GENERIC_XY enum that was previously missing. Signed-off-by: Siwei Zhang <[email protected]>
1 parent 6fa736e commit 9fc7f7f

File tree

1 file changed

+2
-1
lines changed
  • trace-server/org.eclipse.tracecompass.incubator.trace.server.jersey.rest.core/src/org/eclipse/tracecompass/incubator/internal/trace/server/jersey/rest/core/model

1 file changed

+2
-1
lines changed

trace-server/org.eclipse.tracecompass.incubator.trace.server.jersey.rest.core/src/org/eclipse/tracecompass/incubator/internal/trace/server/jersey/rest/core/model/DataProvider.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public interface DataProvider {
2222
* The provider types.
2323
*/
2424
enum ProviderType {
25-
TABLE, TREE_TIME_XY, TIME_GRAPH, DATA_TREE, NONE, GANTT_CHART
25+
TABLE, TREE_TIME_XY, TIME_GRAPH, DATA_TREE, NONE, GANTT_CHART, TREE_GENERIC_XY
2626
}
2727

2828
/**
@@ -45,6 +45,7 @@ enum ProviderType {
4545
"Providers of type TREE_TIME_XY and TIME_GRAPH can be grouped under the same time axis. " +
4646
"Providers of type DATA_TREE only provide a tree with columns and don't have any XY nor time graph data associated with it. " +
4747
"Providers of type GANTT_CHART use the same endpoint as TIME_GRAPH, but have a different x-axis (duration, page faults, etc.), with their own separate ranges. " +
48+
"Providers of type TREE_GENERIC_XY supports XY view with non-time x-axis. " +
4849
"Providers of type NONE have no data to visualize. Can be used for grouping purposes and/or as data provider configurator.")
4950
ProviderType getType();
5051

0 commit comments

Comments
 (0)