Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 0dbab2c57419ac66ebc96dd752d8ec1901725cf1 (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
package org.eclipse.wst.command.internal.env.ui.widgets;

import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.swt.widgets.Shell;

public abstract class AbstractSelectionDialog extends SimpleDialog {
	
	public AbstractSelectionDialog( Shell shell, PageInfo pageInfo)
	{
		super(shell, pageInfo);
	}

	protected void callSetters() {
		// extenders should override this method

	}
	
	public String getDisplayableSelectionString()
	{
		return "";
	}
	
	public abstract IStructuredSelection getObjectSelection();

}

Back to the top