blob: 425f175052cf93e4b739de445000024f317846d7 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2005, 2014 IBM Corporation, Ericsson
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM - Initial API and implementation
* Bernd Hufmann - Updated for TMF
**********************************************************************/
package org.eclipse.tracecompass.tmf.ui.views.uml2sd.core;
import org.eclipse.tracecompass.tmf.core.timestamp.ITmfTimestamp;
/**
* Class implementation of a sequence diagram time event.
*
* @version 1.0
* @author sveyrier
*
*/
public class SDTimeEvent {
// ------------------------------------------------------------------------
// Attributes
// ------------------------------------------------------------------------
/**
* The time stamp of the event
*/
private final ITmfTimestamp fTimestamp;
/**
* The event index.
*/
private final int fEvent;
/**
* The time range implementing node.
*/
private final ITimeRange fNode;
// ------------------------------------------------------------------------
// Constructors
// ------------------------------------------------------------------------
/**
* The default constructor.
*
* @param time The time stamp of the event.
* @param event The event index.
* @param node The time range implementing node.
*/
public SDTimeEvent(ITmfTimestamp time, int event, ITimeRange node) {
fTimestamp = time;
fEvent = event;
fNode = node;
}
// ------------------------------------------------------------------------
// Operations
// ------------------------------------------------------------------------
/**
* Returns the timestamp of the event.
*
* @return the timestamp of the event.
*/
public ITmfTimestamp getTime() {
return fTimestamp;
}
/**
* Returns the event index.
*
* @return the event index.
*/
public int getEvent() {
return fEvent;
}
/**
* Returns the time range implementing node.
*
* @return the time range implementing node.
*/
public ITimeRange getGraphNode() {
return fNode;
}
}