eclipse-kepler

Eclipse Kepler RCP Main Toolbar Actions

 ̄綄美尐妖づ 提交于 2019-12-02 04:06:44
问题 Google is my best friend, but the information I'm getting is too scattered and very unclear. There isn't a concise tutorial describing my needs. I want to add actions to my RCP app's main toolbar, but I need every way of doing this explained thoroughly. But since this is StackOverflow, I will write down the questions off the top of my head, and hope the answers will do. Which is the new and old way of adding actions? Via ActionBarAdvisor or via plugin.xml ? Can actions be added to the main

Adding glassfish Server in Eclipse Kepler error

天涯浪子 提交于 2019-12-01 23:08:39
I am trying to add Glassfish-4 server to Eclipse in order to be able to run applications on this server, but at the final step in "new Server" wizard, finished or next buttons are disabled and a message says: to enable Install Server, enter a path to a new directory.. The Glassfish server is found on the given path. I can't add images because I don't have reputation, but here are the links: http://tinypic.com/view.php?pic=18yck1&s=5#.Umeq3vmnosY http://tinypic.com/view.php?pic=13yezcm&s=5#.UmeqOPmnosY Your help is apreciated. Probably a problem with your JDK... I think you have to download a

Eclipse Kepler RCP Main Toolbar Actions

喜夏-厌秋 提交于 2019-12-01 23:03:35
Google is my best friend, but the information I'm getting is too scattered and very unclear. There isn't a concise tutorial describing my needs. I want to add actions to my RCP app's main toolbar, but I need every way of doing this explained thoroughly. But since this is StackOverflow, I will write down the questions off the top of my head, and hope the answers will do. Which is the new and old way of adding actions? Via ActionBarAdvisor or via plugin.xml ? Can actions be added to the main toolbar ONLY using plugin.xml ? How many steps are there to add an action via extensions? ( handlers ,

Eclipse Kepler crashes when creating new Android Application Project

无人久伴 提交于 2019-12-01 18:21:19
As the title reads, it crashes every time I make a new android app project. It seems to run fine when I make a new Java project, however. The error code i get is: Java was started but returned with exit code: -805306369. That's all I could post, i can't seem to copy the error message (it's a pop-up, doesn't appear on console) Just as it's about to load the project, eclipse goes Not Responding for a long time, so I'm forced to close it and I get that error message. Any help would be appreciated, thank you. If you're using Eclipse to build Android, do the following in order: Install the JDK from

IBM Worklight 6.0 - Installation fails on Eclipse 4.3 “Kepler”

∥☆過路亽.° 提交于 2019-12-01 11:54:24
问题 I'm getting the following problem while trying to install Worklight 6 into Eclipse 4.3 "Kepler": Cannot complete the install because one or more required items could not be found. Software being installed: IBM jQuery Mobile Tools 6.0.0.201306140658 (com.ibm.webtools.jquery.tools.feature.feature.group 6.0.0.201306140658) Missing requirement: IBM Web Editor Common 1.2.0.v20130514_1852 (com.ibm.etools.webtools.webedit.common 1.2.0.v20130514_1852) requires 'bundle com.ibm.icu [4.2.1,5.0.0)' but

ParamConverterProvider method return type mismatch

被刻印的时光 ゝ 提交于 2019-12-01 05:40:22
In the below code snippet I keep receiving the following error in the Provider class. Type mismatch: cannot convert from DemoParamConverter to ParamConverter package com.ofss.shop.application.translators; import java.lang.annotation.Annotation; import java.lang.reflect.Type; import javax.ws.rs.ext.ParamConverter; import javax.ws.rs.ext.Provider; @Provider public class DemoParamConverterProvider { private final DemoParamConverter dpc = new DemoParamConverter(); public <T> ParamConverter<T> getConverter(Class<T> rawType, Type genericType, Annotation[] annotations) { return dpc; } } package com

How to check for the JRE version in eclipse?

谁都会走 提交于 2019-12-01 04:10:10
How to check which version of JRE the eclipse is using ? This section : Window--->Preferences--->Java shows by the name of JDK : Open the About Eclipse dialog (Help -> About Eclipse on Windows, Eclipse -> About Eclipse on OS X) Click "Installation Details", choose the Configuration tab, and scroll down to the "java.home" entry. The value is the path name to the JVM used. To see which Java Eclipse itself is using go to Help > About Eclipse click Installation Details and look at the Configuration tab. When you run Java programs from Eclipse you can select which Java is used. Preferences >

Rendering of buttons with images in Eclipse Kepler is broken

对着背影说爱祢 提交于 2019-11-30 20:30:53
问题 With Kepler, the buttons in the Console view are sometimes rendered like this: when it should look like this: Moving once over the buttons with the mouse fixes the problem. Any idea what could be causing this? Versions: Eclipse Kelper SR1 (20130919-0819) Linux Kubuntu 13.04 raring libgtk2.0-bin: 2.24.17-0ubuntu2 回答1: Considering the various issues seen with Kubuntu, knowing that oxygen-gtk is the default, you could consider checking if the problem persists when switching to QtCurve. See for

Eclipse:java.lang.OutOfMemoryError: PermGen space

瘦欲@ 提交于 2019-11-30 20:22:49
问题 My eclipse configuration. Eclipse : latest version (Kepler) My eclipse config.ini -startup plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar --launcher.library plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.200.v20130521-0416 -product org.eclipse.epp.package.standard.product --launcher.defaultAction openFile -showsplash org.eclipse.platform --launcher.defaultAction openFile --launcher.appendVmargs -vmargs -Dosgi.requiredJavaVersion=1.6 -Xms40M -Xmx512M After Updation

Eclipse building workspace hangs after importing existing maven project because of JavaScript validation

六眼飞鱼酱① 提交于 2019-11-30 16:27:45
问题 When running Eclipse Kepler and importing an existing Maven project, Eclipse hangs during "Building Workspace (XX%)". Switching to the Progress tab reveals a "Validating nnn"; it looks like it’s validating a directory containing JavaScript files. 回答1: Kill Eclipse process. Go to project folder and edit .project file. Remove the following lines (it will disable failing JavaScript validator): <buildCommand> <name>org.eclipse.wst.jsdt.core.javascriptValidator</name> <arguments> </arguments> <