org.eclipse.ui.views.properties.IPropertyDescriptor#org.eclipse.ui.views.properties.TextPropertyDescriptor源码实例Demo

下面列出了org.eclipse.ui.views.properties.IPropertyDescriptor#org.eclipse.ui.views.properties.TextPropertyDescriptor 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: ermaster-b   文件: ERTablePropertySource.java
public IPropertyDescriptor[] getPropertyDescriptors() {
	return new IPropertyDescriptor[] {
			new TextPropertyDescriptor("physicalName", ResourceString
					.getResourceString("label.physical.name")),
			new TextPropertyDescriptor("logicalName", ResourceString
					.getResourceString("label.logical.name")) };
}
 
源代码2 项目: ermasterr   文件: ERTablePropertySource.java
@Override
public IPropertyDescriptor[] getPropertyDescriptors() {
    return new IPropertyDescriptor[] {new TextPropertyDescriptor("physicalName", ResourceString.getResourceString("label.physical.name")), new TextPropertyDescriptor("logicalName", ResourceString.getResourceString("label.logical.name"))};
}
 
源代码3 项目: erflute   文件: ERTablePropertySource.java
@Override
public IPropertyDescriptor[] getPropertyDescriptors() {
    return new IPropertyDescriptor[] {
            new TextPropertyDescriptor("physicalName", DisplayMessages.getMessage("label.physical.name")),
            new TextPropertyDescriptor("logicalName", DisplayMessages.getMessage("label.logical.name")) };
}