tmf: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / views / uml2sd / handlers / provider / ISDPropertiesProvider.java
1 /**********************************************************************
2 * Copyright (c) 2005, 2014 IBM Corporation, Ericsson
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
7 *
8 * Contributors:
9 * IBM - Initial API and implementation
10 * Bernd Hufmann - Updated for TMF
11 **********************************************************************/
12
13 package org.eclipse.tracecompass.tmf.ui.views.uml2sd.handlers.provider;
14
15 import org.eclipse.ui.views.properties.IPropertySheetPage;
16
17 /**
18 * Interface for providing sequence diagram property.
19 *
20 * Contract for loaders that want to provide information in the properties view.
21 *
22 * @version 1.0
23 * @author sveyrier
24
25 */
26 public interface ISDPropertiesProvider {
27
28 /**
29 * Returns the IPropertySheetEntry that will fill in the properties view
30 *
31 * @return the property sheet entry
32 */
33 IPropertySheetPage getPropertySheetEntry();
34
35 }
This page took 0.031826 seconds and 5 git commands to generate.