Copyright header update, 2015 edition
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / views / uml2sd / ITimeCompressionListener.java
CommitLineData
73005152 1/**********************************************************************
ed902a2b 2 * Copyright (c) 2005, 2014 IBM Corporation, Ericsson
73005152
BH
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
013a5f1c
AM
7 *
8 * Contributors:
c8422608
AM
9 * IBM - Initial API and implementation
10 * Bernd Hufmann - Updated for TMF
73005152 11 **********************************************************************/
c8422608 12
2bdf0193 13package org.eclipse.tracecompass.tmf.ui.views.uml2sd;
73005152 14
2bdf0193
AM
15import org.eclipse.tracecompass.tmf.ui.views.uml2sd.core.Lifeline;
16import org.eclipse.tracecompass.tmf.ui.views.uml2sd.drawings.IColor;
73005152
BH
17
18/**
df0b8ff4
BH
19 * <p>
20 * Listener interface for the time compression bar to notify about dela selection.
013a5f1c
AM
21 * </p>
22 *
73005152 23 * @author sveyrier
df0b8ff4 24 * @version 1.0
73005152
BH
25 */
26public interface ITimeCompressionListener {
27
df0b8ff4
BH
28 /**
29 * Notifies listeners about a selected delta.
013a5f1c 30 *
a55887ca
AM
31 * @param lifeline
32 * The current lifeline.
33 * @param startEvent
34 * The start event selected.
35 * @param nbEvent
36 * A number of events.
37 * @param color
38 * The current color to use.
df0b8ff4 39 */
57a2a5ca 40 void deltaSelected(Lifeline lifeline, int startEvent, int nbEvent, IColor color);
73005152
BH
41
42}
This page took 0.062858 seconds and 5 git commands to generate.