I have an eclipse Tomcat project that has several dependencies on other eclipse projects.
For example imagine the main project is called server and has several dependencies:
server
(depends on):
data-lib
server-utils
messaging-utils
Currently every time I change data-lib,server-utils,messaging-utils I have to recreate the .jar f...
I want to be able to use CTRL-SHIFT-T to open a Java Type (source code file) from any perspective in Eclipse. Unfortunately, the keybinding only works in the Java perspective.
I tried defining the keybindings using context "In Windows" and "In Dialogs and Windows." That did not do the trick.
Any ideas how to do this?
(For documenta...
I have code that correctly finds the line number of an IMethod in Eclipse under Windows:
IMethod method= ...;
String source= type.getCompilationUnit().getSource();
int lineNumber= 1;
for (int i= 0; i < method.getSourceRange().getOffset(); i++)
if (source.charAt(i) == Character.LINE_SEPARATOR)
lineNumber++;
However, this doesn...
Is there any way I can use a visual editor to make swing applications in Eclipse? I'm using Ganymede.
...
I currently have a program that prints lines of text to the screen in various manners such as 'System.out.println()' statements and for loops the print all elements in an array to screen.
I am now adding a GUI to this program. My problem is that I want to print everything that prints to eclipse's console to a textbox in my GUI instead. ...
I currently have a program that prints lines of text to the screen in various manners such as 'System.out.println()' statements and for loops the print all elements in an array to screen.
I am now adding a GUI to this program in a seperate class. My problem is that I want to print everything that prints to eclipse's console to a textbox...
I'm using Eclipse Ganymede (version 3.4.1) with a C++ project. Is there some way to filter the content assist list to only show methods and fields that are available in the current context?
If not, why not? Is there ever a situation where I would want to access the private fields, etc. in an object?
...
i'd like to compile (debugging if possible) windows program in eclipse cdt with microsoft copmiler.
It's better to support eclipse tool-chain (in eclipse cdt)
It's impossible to find this solution in google, except using mingw's make and Visual Studio Makefile..
Are there anyone to have solution with this problem?
...
I am trying to debug a problem with a django view. When I run it on the command line.
I don't get any of these messages. However when I run the it in the PyDev debugger i get these error messages. I am running with the --noreload option.
What do these error messages mean?
Why do I not get them when I run it on the command line?
/Syste...
I'm a newbie to Eclipse and can't figure out how to get the JavaDocs for SWT and JFace to show up when I am editing.
How do I do this? Thanks!
...
Is it possible to document C code in Eclipse (3.4 w/ CDT) in such a way that JavaDoc/Intellisense like documentation is auto generated and displayed?
E.g. On typing a function name followed by a '(' you get the first param with a tooltip explaining the meaning of that parameter?
Thanks.
...
Hi there,
Is it possible to hide .svn files in the Open Resource dialog (Ctrl + Shift + R) of Eclipse?
It's very annoying when you have hundreds of files...
Cheers.
...
How would I go about using jtracert to sequence diagram a junit test being run within eclipse?
...
I'm viewing HTML in an SWT Browser widget. I am appending logging messages to the end of the content and would like to keep the bottom visible all the time. Currently, whenever I append text to the content, I first set the new text:
browser.setText(content);
And then I scroll down the Browser widget via JavaScript:
browser.execute("w...
I am using Ubuntu for one of the first times and eclipse's debugger has given me more trouble than I can deal with. For the moment I just want to try to figure out how to get the "Cannot find bounds of current function" to stop so I can see where my flow of control goes awry.
I know this is a vague question, but I'm willing to quickly ...
I'm writing a plug-in for Eclipse that decorates things in a Java source editor.
I have to decide whether to make the extra effort (and pay a performance/memory cost) to place the annotations on every visible source file in the editor, or just support one active file at a time.
I know that in my experience, I rarely ever have two sour...
I have two Android projects, a 'library project' containing a custom layout, and an 'application project' containing an application which uses the layout.
Everything seems to build and execute fine, except that the visual layout editor throws a ClassNotFoundException (which I assume is a bug in the plug-in), but when I try to start to m...
I am writing Eclipse plugins for Java, and have the following problem:
Given an IEditorPart, I need to check if it is a java editor.
I could do (IEditor instanceof JavaEditor),
but JavaEditor is an org.eclipse.jdt.internal.ui.javaeditor.JavaEditor,
which falls under the JDT's "internal" classes.
Is there a smarter and safer way to do ...
Hello,
java version "1.5.0_14"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_14-b03)
Java HotSpot(TM) Server VM (build 1.5.0_14-b03, mixed mode)
I'm trying to debug a NullPointerException I'm getting for passing a reference to statically defined field. To be more specific, I'm setting a global on a Drools3 working mem...
After installing Test & Performance Tools Platform in Eclipse Ganymede on, whenever I tried to profile a Java application, I was confronted by the launch configuration dialogue which contained an error along the lines of:
Error IWAT0435E could not connect to host
How is this problem fixed?
...