tmf: Add collapse, expand and hide category buttons on marker axis
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / widgets / timegraph / widgets / IMarkerAxisListener.java
1 /*******************************************************************************
2 * Copyright (c) 2016 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Patrick Tasse - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.tmf.ui.widgets.timegraph.widgets;
14
15 /**
16 * Interface for marker axis call-backs.
17 * @since 2.0
18 */
19 public interface IMarkerAxisListener {
20
21 /**
22 * Set the visibility of a marker category.
23 *
24 * @param category
25 * the marker category
26 * @param visible
27 * true if the marker category should be visible, false otherwise
28 */
29 void setMarkerCategoryVisible(String category, boolean visible);
30 }
This page took 0.031551 seconds and 5 git commands to generate.