blob: a10bdf5aae56b80f7011670b68111e5c64762106 [file] [log] [blame]
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();
}