/******************************************************************************* * Copyright (c) 2014 École Polytechnique de Montréal * * All rights reserved. This program and the accompanying materials are made * available under the terms of the Eclipse Public License v1.0 which * accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Geneviève Bastien - Initial implementation and API *******************************************************************************/ package org.eclipse.tracecompass.internal.tmf.core.synchronization; import org.eclipse.tracecompass.tmf.core.synchronization.ITmfTimestampTransform; /** * Interface for timestamp transform who also provide an inverse transform. * * @author Geneviève Bastien */ public interface ITmfTimestampTransformInvertible extends ITmfTimestampTransform { /** * Returns the inverse of this transform. The transform composed with its * inverse yields the identity (or as close to it as mathematical * approximations in the formulae allow). * * @return The inverse transform */ ITmfTimestampTransform inverse(); }