blob: ca677f52f5b475c5c2a0f1c192790ffa4a653942 [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.handlers.provider;
import org.eclipse.ui.views.properties.IPropertySheetPage;
/**
* Interface for providing sequence diagram property.
*
* Contract for loaders that want to provide information in the properties view.
*
* @version 1.0
* @author sveyrier
*/
public interface ISDPropertiesProvider {
/**
* Returns the IPropertySheetEntry that will fill in the properties view
*
* @return the property sheet entry
*/
IPropertySheetPage getPropertySheetEntry();
}