GEF,EMF,RCP,Eclipse's plugin的几个问题(2) Pro…

2008-02-23 09:34:12来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

正常情况下,Properties View中的propety(category)是按照字母排序的,跟我们要求
不相符,效果不好,可以有如下办法解决:

新建一个Class 继承 PropertySheetSorter,分别实现compare和compareCategories
方法,让两个方法都return 0,这样,原来的自动排序就失效了,就可以按照property
添加时候的顺序排列,达到我们要求的效果.

package com.companyname.projectname.modulename.model.properties;

import org.Eclipse.ui.views.properties.IPropertySheetEntry;
import org.eclipse.ui.views.properties.PropertySheetSorter;

public class MyPropertySheetSorter extends
PropertySheetSorter {

public int compare(IPropertySheetEntry entryA, IPropertySheetEntry entryB) {
return 0;
}

public int compareCategories(String categoryA, String categoryB) {
return 0;
}

}

新建一个Class 继承 PropertySheetPage,在constructor中设置setSorter()即可.例如下:

package com.companyname.projectname.modulename.model.properties;

import org.eclipse.ui.views.properties.PropertySheetPage;

public class MyPropertySheetPage extends PropertySheetPage {

public MyPropertySheetPage(){
this.setSorter(new MyPropertySheetSorter());
}

}


有了自定义的以上两个类,就可以Editor(例如:NodesEditor)的getAdatper方法中设置该
Sorter,具体如下:

private PropertySheetPage propertySheetPage;

public Object getAdapter(Class type) {
//-->
if (type == IPropertySheetPage.class){
propertySheetPage = new MyPropertySheetPage();
//下边这句话非常必要,如果不设置,Properties View更新时候,资源不能自动更新...
propertySheetPage.setRootEntry(new UndoablePropertySheetEntry(this.getCommandStack()));
return propertySheetPage;
}
//<--
if (type == IContentOutlinePage.class)
return new ServicesOutlinePage(new TreeViewer());
if (type == ZoomManager.class)
return getGraphicalViewer().getProperty(ZoomManager.class.toString());
return super.getAdapter(type);
}


上一篇: GEF,EMF,RCP,Eclipse's plugin的几个问题(3) 让eclipse的properies view实现disabled效果
下一篇: GEF,EMF,RCP,Eclipse's plugin的几个问题(4) No more handles Exception 解决办法

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Hibernate 中的 unsaved-value 的重要性

下一篇:Eclipse3.0的swt编程