java&eclipse
文章平均质量分 77
benh
这个作者很懒,什么都没留下…
展开
-
extension-point schema
先看个例子,com.bolour.sample.eclipse.service.ui_1.0.0的extension-point schema,省略了部分不重要的内容. Each extension provides one or more service callbacks functions. For e原创 2007-11-22 11:09:00 · 2413 阅读 · 1 评论 -
代码怎样引用plug-in.xml, menifest.mf等配置文件的信息
Eclipse通过plug-in.xml以及menifest.mf来配置plug-in之间的关系。那么,代码中怎么取得plug-in.xml或者menifest.mf这样的配置文件中的信息呢?可以通过interface IConfigurationElement这样的接口,让代码获得配置文件中的相关信息。以下是interface IConfigurationElement的定义: * A co原创 2007-11-22 13:47:00 · 983 阅读 · 0 评论 -
com.bolour.sample.eclipse.service.ui_1.0.0的proxy, IConfigurationElement, etc
先看proxy, proxy本身是IFunction, 内有真正的IFunction - delegate, 以及IConfigurationElement element和一个状态变量。 private static class FunctionProxy implements IFunction { // The "real" implementation of the functi原创 2007-11-23 16:32:00 · 1252 阅读 · 0 评论