2010-02-23 57 views

回答

5

你可以得到一些提示Eclipse的文章:

We Have Lift-off: The Launching Framework in Eclipse

聲明一個啓動配置類型

在創造我們的小應用程序啓動器聲明配置類型的第一步,如我們插件的plugin.xml文件中的以下XML代碼片段所示:
非UI聲明

<extension point="org.eclipse.debug.core.launchConfigurationTypes"> 
    <launchConfigurationType 
     name="Java Applet" 
     delegate="org.eclipse.jdt.internal.launching.JavaAppletLaunchConfigurationDelegate" 
     modes="run, debug"    
     id="org.eclipse.jdt.launching.javaApplet">   
    </launchConfigurationType> 
</extension> 

這個聲明的最重要的部分是委託屬性指定實現該接口org.eclipse.debug.core.model.ILaunchConfigurationDelegate類的完全限定名稱。
委託是啓動器的大腦,並實現啓動指定配置的launch()方法。

+0

有沒有辦法從Eclipse UI做到這一點? – 2015-02-24 18:07:06

+0

@notfed也許,但我沒有檢查與最近的Eclipse(這個答案是五歲) – VonC 2015-02-24 18:10:23