ctf: Handle traces with unknown event attributes
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / widgets / timegraph / ITimeGraphRangeListener.java
CommitLineData
b0d3496e 1/*******************************************************************************\r
fb5cad3d 2 * Copyright (c) 2012 Ericsson\r
013a5f1c 3 *\r
b0d3496e
ASL
4 * All rights reserved. This program and the accompanying materials are\r
5 * made available under the terms of the Eclipse Public License v1.0 which\r
6 * accompanies this distribution, and is available at\r
7 * http://www.eclipse.org/legal/epl-v10.html\r
013a5f1c 8 *\r
b0d3496e 9 * Contributors:\r
fb5cad3d 10 * Patrick Tasse - Initial API and implementation\r
b0d3496e
ASL
11 *******************************************************************************/\r
12\r
2fa130b8 13package org.eclipse.linuxtools.tmf.ui.widgets.timegraph;\r
b0d3496e
ASL
14\r
15import java.util.EventListener;\r
16\r
013a5f1c 17/**\r
fb5cad3d 18 * A listener which is notified when a timegraph changes its visible time range.\r
013a5f1c
AM
19 *\r
20 * @version 1.0\r
21 * @author Patrick Tasse\r
b0d3496e 22 */\r
fb5cad3d
PT
23public interface ITimeGraphRangeListener extends EventListener {\r
24\r
25 /**\r
26 * Notifies that the timegraph range has changed.\r
27 *\r
28 * @param event event object describing details\r
29 */\r
30 public void timeRangeUpdated(TimeGraphRangeUpdateEvent event);\r
b0d3496e 31}\r
This page took 0.036156 seconds and 5 git commands to generate.