org.eclipse.ui.views.properties.TextPropertyDescriptor Java Examples
The following examples show how to use
org.eclipse.ui.views.properties.TextPropertyDescriptor.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ERTablePropertySource.java From ermaster-b with Apache License 2.0 | 5 votes |
public IPropertyDescriptor[] getPropertyDescriptors() { return new IPropertyDescriptor[] { new TextPropertyDescriptor("physicalName", ResourceString .getResourceString("label.physical.name")), new TextPropertyDescriptor("logicalName", ResourceString .getResourceString("label.logical.name")) }; }
Example #2
Source File: ERTablePropertySource.java From ermasterr with Apache License 2.0 | 4 votes |
@Override public IPropertyDescriptor[] getPropertyDescriptors() { return new IPropertyDescriptor[] {new TextPropertyDescriptor("physicalName", ResourceString.getResourceString("label.physical.name")), new TextPropertyDescriptor("logicalName", ResourceString.getResourceString("label.logical.name"))}; }
Example #3
Source File: ERTablePropertySource.java From erflute with Apache License 2.0 | 4 votes |
@Override public IPropertyDescriptor[] getPropertyDescriptors() { return new IPropertyDescriptor[] { new TextPropertyDescriptor("physicalName", DisplayMessages.getMessage("label.physical.name")), new TextPropertyDescriptor("logicalName", DisplayMessages.getMessage("label.logical.name")) }; }