eclipse插件实现对象在属性编辑器中编辑

有两个办法:
1.选择的对象实现IPropertySource接口
2.使用适配器的方式,实例如下:
<extension point="org.eclipse.core.runtime.adapters">
<factory adaptabletype="java.util.TimeZone" class="com.packtpub.e4.clock.ui.internal.TimeZoneAdapterFactory">
<adapter type="org.eclipse.ui.views.properties.IPropertySource"></adapter>
</factory>
</extension>
 
 

你可能感兴趣的:(eclipse)