Fix javadoc warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / handlers / provider / ISDPropertiesProvider.java
CommitLineData
73005152
BH
1/**********************************************************************
2 * Copyright (c) 2005, 2006, 2011 IBM Corporation and others.
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 * $Id: ISDPropertiesProvider.java,v 1.2 2006/09/20 20:56:26 ewchan Exp $
8 *
9 * Contributors:
10 * IBM - Initial API and implementation
11 * Bernd Hufmann - Updated for TMF
12 **********************************************************************/
13package org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.provider;
14
ebf38fcc
BH
15import org.eclipse.ui.views.properties.IPropertySheetPage;
16
73005152
BH
17/**
18 * Contract for loaders that want to provide information in the properties view
19 */
20public interface ISDPropertiesProvider {
21
22 /**
23 * Returns the IPropertySheetEntry that will fill in the properties view
24 *
0d9a6d76 25 * @return the property sheet entry
73005152
BH
26 */
27 public IPropertySheetPage getPropertySheetEntry();
28
29}
This page took 0.029344 seconds and 5 git commands to generate.