eclipse-kepler

Eclipse Menu distorted in Ubuntu-13.10

℡╲_俬逩灬. 提交于 2019-12-13 02:09:29
问题 I have recently installed Ubuntu 13.10 on my Lenovo intel core2 duo 32 bit laptop with 15'' screen. Some days back I downloaded eclipse-standard-kepler-SR1-linux-gtk.tar.gz from the eclipse web site. But after starting eclipse I see the menu distorted. You can refer the video here : http://youtu.be/fcBHLAlFj4Y 回答1: You can try the following command: UBUNTU_MENUPROXY= eclipse (Where eclipse is the path to your eclipse) For more details check out this link 回答2: This is a bug in Eclipse 4.3.1.

Plugin execution not covered by lifecycle configuration

好久不见. 提交于 2019-12-12 20:36:50
问题 Beginner of Spring Background : So far, i have been working on core JAVA and now i need to switch to MVC Trying to make my first Spring MVC Hello World Example from this tutorial , i am getting below error on pom.xml : Multiple annotations found at this line: - Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven-compiler-plugin: 2.3.2:compile (execution: default-compile, phase: compile) - Plugin execution not covered by lifecycle configuration: org.apache

Eclipse Glassfish launch configuration - VM arguments are ignored

爷,独闯天下 提交于 2019-12-12 13:32:05
问题 I am struggling to set up Glassfish 4 with Eclipse Kepler. No matter what I do, the VM arguments of the Glassfish launch configuration are not passed on to the VM running the server. Not even the argument (-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=9009) that is put into the launch configuration by default by the Glassfish Tools for Eclipse plugin. The running server has all system properties set according to the domain.xml of the started domain. The VM arguments specified

Eclipse Kepler Dependency Injection in 3.x

徘徊边缘 提交于 2019-12-12 05:23:44
问题 I have a working plugin in Eclipse 3.7 with Views and a Perspective . Now I try to move this to Eclipse Kepler 4.3 therefore i follow the Tutorial from Jonas Helming All my Views are based on a TemplateView in another Plugin. This TemplateView was transformed to an e4 style POJO View. My Plugin extends this TemplateView and adds the wrapper class (as described in the Tutorial). Iff i run my application in e3 style (means TemplateView is extending ViewPart ) everything is fine and the

Annoying Cursor in Eclipse Kepler

流过昼夜 提交于 2019-12-12 02:43:58
问题 I have eclipse kepler on Ubuntu 13.04 which has Dark Juno theme and solarized color theme for the editor. It didn't have any problem until recently wherein whenever I'm typing the typing cursor seems to have this black trail that goes with it and covers like 5-6 characters. It also occurs when I'm trying to go into lines of code using mouse or keyboard. It doesn't seem to be the smart insert mode which I've tried turning off and didn't have any effect. Sometimes the typing cursor becomes 2

Eclipse Kepler shows error marks on warnings

邮差的信 提交于 2019-12-12 02:29:35
问题 I've got a problem with Eclipse Kepler. In my Java project i've got some warnings and now they are shown as error marks (red crosses) in the project explorer. It looks like this picture http://i.stack.imgur.com/H8j7f.png So my question is: Is it possible to switch it back to the yellow cross for warnings and red cross for errors? I haven't found anything about it, so I hope you can help me. Edit: I've made a test project, and here is a screenshot: Thanks! 回答1: It might me because you set the

How to implement “Save As” functionality for our Part

て烟熏妆下的殇ゞ 提交于 2019-12-11 20:09:19
问题 I'm creating E4 RCP application in that I have one part. I want to implement "Save As" functionality for my Part, as it is implemented for Editors (Like:Java file Editor). Requirements: When user click on my part "Save As" option should be enable. When user click on "Save As" option my code should run so that I can do what I want. So my question is for this what should I do, is I have to implement any extension point or any this else. ? 回答1: In a pure e4 application there is no built in

Lombok + Eclipse Kepler

送分小仙女□ 提交于 2019-12-11 07:58:50
问题 So, after updating eclipse from Helios to Kepler, I found my Lombok-dependent project to be full of errors, due to eclipse not seeing the added methods by @Getter and stuff, so i reinstalled Lombok, however eclipse either crashed or just didnt see the methods, depending on how i run it. If I ran it from eclipse.exe from windows explorer, it starts without lombok, and if i type it into the run dialog it just crashes like this: Java was started but returned exit code=1 C:\Windows\system32\javaw

JavaFX display scene background image

拟墨画扇 提交于 2019-12-11 02:27:32
问题 I’m developing a JavaFX application on Eclipse Kepler using the built-in FX library from Java SDK1.7.0_45. I want to display a background image in a scene. Following the tutorial provided in the Java documentation, following code should work: public class Main extends Application { public static void main(String[] args) { Application.launch(args); } @Override public void start(Stage primaryStage) { GridPane grid = new GridPane(); Scene scene = new Scene(grid, 300, 275); primaryStage.setScene

ParamConverterProvider method return type mismatch

雨燕双飞 提交于 2019-12-09 03:16:59
问题 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>