Skip to main content
summaryrefslogtreecommitdiffstats
blob: 00bd6c114cc675e085954f6d393426f635555f7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
public IPropertyDescriptor[] getPropertyDescriptors() {
	if (getClass().equals(ClassDiagram.class)) {
		ComboBoxPropertyDescriptor cbd = new ComboBoxPropertyDescriptor(
				ID_ROUTER, OdinMessages.getString("..."), //$NON-NLS-1$
				new String[]{OdinMessages.getString("..."),
						OdinMessages.getString("...")});
		cbd.setLabelProvider(new ConnectionRouterLabelProvider());
		return new IPropertyDescriptor[]{cbd};
	}
	return super.getPropertyDescriptors();
}

Back to the top