eclipse-plugin

How to write eclipse rcp applications with scala?

烈酒焚心 提交于 2020-04-07 12:46:40
问题 The Scala Eclipse plugin page says: * Support for Eclipse plugin and OSGi development including hyperlinking to Scala source from plugin.xml and manifest files. How does this support work? There's no wizards for making Scala plugins. I've found no documentation on how to use Scala in a Eclipse plugin/RCP application. Is it even possible? 回答1: Yes, it is possible. In fact, the Scala Eclipse plugin itself is written in Scala. I've never created a Scala RCP app myself, but I'm guessing that what

How to write eclipse rcp applications with scala?

谁说胖子不能爱 提交于 2020-04-07 12:46:05
问题 The Scala Eclipse plugin page says: * Support for Eclipse plugin and OSGi development including hyperlinking to Scala source from plugin.xml and manifest files. How does this support work? There's no wizards for making Scala plugins. I've found no documentation on how to use Scala in a Eclipse plugin/RCP application. Is it even possible? 回答1: Yes, it is possible. In fact, the Scala Eclipse plugin itself is written in Scala. I've never created a Scala RCP app myself, but I'm guessing that what

Any known problems/bugs with objectContribution (popup) to CVS History view? It's not working

六眼飞鱼酱① 提交于 2020-04-07 02:16:23
问题 Do you know of any problems or reported bugs with the Eclipse CVS history not showing a contributed popup for objectClass="org.eclipse.team.internal.ccvs.core.ILogEntry" ? I've a popup defined in the plugin.xml and it's not showing at all. The same popup is working without problems in Eclipse 3.0.2 Here is the popup definition at plugin.xml: <extension point="org.eclipse.ui.popupMenus"> <objectContribution objectClass="org.eclipse.team.internal.ccvs.core.ILogEntry" id="cvshistory"> <action

Any known problems/bugs with objectContribution (popup) to CVS History view? It's not working

六眼飞鱼酱① 提交于 2020-04-07 02:15:23
问题 Do you know of any problems or reported bugs with the Eclipse CVS history not showing a contributed popup for objectClass="org.eclipse.team.internal.ccvs.core.ILogEntry" ? I've a popup defined in the plugin.xml and it's not showing at all. The same popup is working without problems in Eclipse 3.0.2 Here is the popup definition at plugin.xml: <extension point="org.eclipse.ui.popupMenus"> <objectContribution objectClass="org.eclipse.team.internal.ccvs.core.ILogEntry" id="cvshistory"> <action

Any known problems/bugs with objectContribution (popup) to CVS History view? It's not working

南笙酒味 提交于 2020-04-07 02:15:21
问题 Do you know of any problems or reported bugs with the Eclipse CVS history not showing a contributed popup for objectClass="org.eclipse.team.internal.ccvs.core.ILogEntry" ? I've a popup defined in the plugin.xml and it's not showing at all. The same popup is working without problems in Eclipse 3.0.2 Here is the popup definition at plugin.xml: <extension point="org.eclipse.ui.popupMenus"> <objectContribution objectClass="org.eclipse.team.internal.ccvs.core.ILogEntry" id="cvshistory"> <action

Any known problems/bugs with objectContribution (popup) to CVS History view? It's not working

你离开我真会死。 提交于 2020-04-07 02:13:00
问题 Do you know of any problems or reported bugs with the Eclipse CVS history not showing a contributed popup for objectClass="org.eclipse.team.internal.ccvs.core.ILogEntry" ? I've a popup defined in the plugin.xml and it's not showing at all. The same popup is working without problems in Eclipse 3.0.2 Here is the popup definition at plugin.xml: <extension point="org.eclipse.ui.popupMenus"> <objectContribution objectClass="org.eclipse.team.internal.ccvs.core.ILogEntry" id="cvshistory"> <action

Why does the table viewer's horizontal scrolling disappears once the wizard page is brought back to its normal size post expansion?

喜夏-厌秋 提交于 2020-03-25 18:20:59
问题 I have a table viewer displayed on a wizard page. The first time the page is displayed, as seen both horizontal and vertical scroll bars are present as yellow highlighted shown in below image- The horizontal scroll bar disappears once the wizard page is expanded in both directions and then brought back to its normal size. As seen below, only the vertical scroll bar is there, but the horizontal scroll bar is lost. How can I bring back the horizontal scroll bar? The code snippet to simulate the

Why does the table viewer's horizontal scrolling disappears once the wizard page is brought back to its normal size post expansion?

好久不见. 提交于 2020-03-25 18:20:50
问题 I have a table viewer displayed on a wizard page. The first time the page is displayed, as seen both horizontal and vertical scroll bars are present as yellow highlighted shown in below image- The horizontal scroll bar disappears once the wizard page is expanded in both directions and then brought back to its normal size. As seen below, only the vertical scroll bar is there, but the horizontal scroll bar is lost. How can I bring back the horizontal scroll bar? The code snippet to simulate the

How to add Grails Support to Eclipse 2019-06?

江枫思渺然 提交于 2020-03-05 00:16:35
问题 When searched using : http://dist.springsource.com/release/TOOLS/update/e4.4/ It does not show Grails in list (Referred: https://www.vogella.com/tutorials/Grails/article.html) Also Searched in Eclipse Marketplace : https://marketplace.eclipse.org/category/free-tagging/grails But it is not allowing to install in Eclipse version. Can anyone suggest how to create Grails projects in eclipse as i am first time configuring Grails? 来源: https://stackoverflow.com/questions/60520505/how-to-add-grails

How to avoid widgets being added while moving back and on then clicking Next?

主宰稳场 提交于 2020-03-04 17:39:10
问题 I have created a Wizard. it has 3 pages- @Override public void addPages() { super.addPages(); addPage(firstPage); addPage(secondPage); addPage(thirdPage); } For the first page, I have a simple label with a input field to collect user entered value- @Override public void createControl(Composite parent) { Composite page = new Composite(parent, SWT.NONE); setControl(page); setPageComplete(false); // page.setLayout(new GridLayout(2, false)); GridLayout gridLayout = new GridLayout(); gridLayout