GEF,EMF,RCP,Eclipse's plugin的几个问题(2) Pro…
2008-02-23 09:34:12来源:互联网 阅读 ()
正常情况下,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
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 避免HBase PageFilter踩坑,这几点你必须要清楚 2019-08-16
- Test failed.尝试加载Oracle客户端库时引发BadImageFormatEx 2018-06-18
- Eclipse编程Tips(2)-让RCP自带JRE 2008-02-23
- 在RCP中实现用托拽打开Editor 2008-02-23
- 方便管理plugin或rcp的icons 2008-02-23
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash