Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c85730b62c9be903514a1c3768400626b5924d08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/**********************************************************************
 * 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 v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * 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();

}

Back to the top