<extension
point="org.eclipse.core.expressions.propertyTesters">
<propertyTester
class="com.ebay.tools.vjet2.internal.debug.property.LaunchPropertyTester"
id="com.ebay.tools.vjet2.debug.property.launch"
namespace="com.ebay.tools.vjet2.debug"
properties="launchJS,launchHTML"
type="org.eclipse.core.runtime.IAdaptable">
</propertyTester>
</extension>
Specified class should be extends PropertyTester and implement related methods.
LaunchPropertyTester extends PropertyTester {
Others services register.
IFocusService focusService =
(IFocusService) PlatformUI.getWorkbench()
.getService(IFocusService.class);
focusService.addFocusTracker(text, "textControlId");
All variables collected in ISources class, User can find related variables in this class.
posted on 2010-10-14 10:11
Daniel 阅读(203)
评论(0) 编辑 收藏 所属分类:
Eclipse的相关