eclipse

Eclipse Checkstyle with configuration and SuppressionFilter on server

I have configured my Eclipse to use a remote checkstyle configuration that is located on a server, which I reach via HTTP. This works fine, but the configuration contains: <module name="SuppressionFilter"> <property name="file" value="${basedir}/checkstyle-filter.xml"/> </module> So I try to set an additional property "basedir" which...

Where can I find information about the Eclipse Architecture Standard?

I basically need the full description of the standard as well as any document that touches the subject (its applicability, problems, quality attributes promoted and not promoted by the standard). Any reference will help. ...

Importing war file into eclipse and build path problem

Hi, I am facing some weird problem when importing .war file into eclipse. The problem is, the build folder does not contain any necessary class folder. So when I try to set the build path, eclipse reports "Error while adding to build path. Reason: cannot nest output folder 'projectName/build/class' inside 'projectName/build'. From ...

(Eclipse RCP) How can I get the reference of Editor in command handler

Hi all, I'd like the get the text of editor in a command handler, so how can I get the reference of Editor, thanks ...

Does Eclipse support keyboard shortcuts known from Visual Studio?

First, I know it is possible to setup Visual Studio keyboard scheme in Eclipse after installing CDT plugin, but unfortunately most useful keys only work with C/C++ sources, not with Java. I'm trying to configure Java editor but I'm unable to find some of most useful shortcuts... Go to declaration (VS: Ctrl+F12) / go to definition... (V...

How do i configure the right click menu in the 'project explorer' view ?

Hello everyone. I installed a fresh eclipse and i have a problem : when i right click somewhere in the project explorer view, the menu is missing some links and some that i dont' want to see are there. How can i modify that ? Bonus question : i can't rename files, folders, classes, nothing. The 'rename' link in the toolbar (it doesn't...

JDT without Eclipse?

Some time ago I wrote an Eclipse plugin which makes use of JDT to do some parsing. Now I am thinking of making a command-line version of this app. Naturally, I hope to reuse the parsing code, so I need to get JDT to work outside Eclipse. Is there any way I can accomplish this (maybe build some wrappers, etc)? Are there any ports of the J...

How to add a new button to Eclipse IDE

We are using Eclipse IDE for Embedded C development. I would like to add a new button to the Eclipse IDE, on click of which another EXE has to be called. Kindly let me know the feasibility !!! Thanks in advance! Cheers, Arun ...

invoking web services from eclipse

i have to invoke already built web services from my code and get the response in return. how can i do it.... (i am working on eclipse for blackberry phone simulator,using j2me) any help will be greatful........ ...

Regexp to compact default method implementations in Eclipse

I use Eclipse Galileo to develop Java code. When implementing an interface for mocking, I often want to specify the behavior of just a few methods and retain the default behavior (do nothing or return null/0) for most. Eclipse will produce a nicely formatted default implementation like: HttpServletRequest mock = new HttpServletReque...

programming in mahout

what is the step-by-step procedure for executing a program in mahout ...

Developing for Android on Windows 7 using Eclipse

I have followed all the necessary installation and setup steps for Eclipse 3.4 + ADT + Android SDK on Windows 7. I followed the Hello, Android tutorial in Eclipse and code-completion also works like a charm. No errors shown. unfortunately the emulator never shows up. When I run the project. I have fullfilled the same steps in a virtual ...

Changes in ECORE are not reflected when saving Resource

Hello all, I'm using WSDL ecore together with XSD ecore to read and edit WSDL file. During my edit I need to remove a couple of XSD Types and Elements and replace them with the reference to the XML Schema stored eslwhere. I'm loading the WSDL and I can see everything inside using nice interfaces provided by WSDL ecore. I can also see ev...

Eclipse is very slow when using Code Assist (org.eclipse.mylyn.java.ui.javaAllCompletionProposalComputer)

Can you guess what happens? I generated a client stub using Eclipse WTP [Axis2] and while working on a client I get Eclipse working very slowly when it tries to use Code Assist, that is, press a dot to get a list of methods, there's up to 30 seconds hang-ups of the workbench. eclipse.buildId=M20090917-0800 java.version=1.6.0_15 java.ve...

How to refactor a static inner class to a top level class in Eclipse?

I am having trouble finding the correct refactor option for the following scenario: I have code like this (in Outer.java): public class Outer { // ... class stuff public static class Inner { // ... inner class stuff } } I am looking for a way to select Inner, and have it converted to a top level class, in it'...

Complex SVN Checkout Procedure?

I have a repository configured like this: +---CollectionA | \---project1 | \---trunk | \---sourcecode | \---tags | \---rel-1 | \---project2 | \---trunk | \---sourcecode | \---tags | \---project3 | \---trunk | \---sourcecode | \---tags | \---rel-1...

can't use DecimalFormat class within Eclipse

i am developing a blackberry project through the latest eclipse IDE. i am wanting to use the DecimalFormat class, however, i have noticed that eclipse doesn't recognize this class. Even if i change the JDK compliance level to 1.5, the project rebuilds fine but it still won't recognize it (so you still see the class underlines with red li...

Horizontal scrolling with the scrollwheel in Eclipse

I've been trying to find a way to scroll the text horizontally with my scrollwheel in Eclipse, similar to the way you can do it in Textpad. In Textpad if you hold ctrl while you scroll vertically it will scroll horizontally. Does anybody know if there is a configurable setting somewhere in Eclipse that will allow this? I've looked all ov...

How does eclipse deploy web applications using WTP?

I have a web application (war file). When I deploy it through eclipse 3.5 using the WTP tools, I am able to start the tomcat server from within eclipse and view all the pages of the application. However I don't see my war file inside the webapps folder of tomcat home directory (or for that matter its exploded format). I was under the imp...

Get IResources methods in eclipse development?

I'm developing an eclipse plugin and need to list of IMethods that belong to an IResource. I see IType has a getMethods function but not sure how to go about converting an IResource to an IType Help appreciated Nicky ...