Hi,
Is there any way to make the auto-suggest drop down list appear for locally scoped variables and local member variables/methods without having to push ctrl+space? Like Visual Studio does? It appears automatically for members of objects after getting as far as typing 'object.'
I'm finding myself typing a couple of letters and hittin...
Hi,
I recently switched to Eclipse (Helios) for my programming needs, and I like it very much.
There is just on thing that is driving me crazy, how can I launch (compile and run) my code into the native mac osx terminal.
I tried creating an "external tools configuration", but that just starts the terminal without outputting the applic...
I'm trying to load Adobe Flash Builder 4 on Snow Leopard 10.6.4, but got this crash message:
Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Application Specific Information:
Java information:
Version: Java HotSpot(TM) Cl...
I've scoured the web for the entire day trying to find an example on how to implement what I read concerning changing a command label dynamically here:
http:// wiki.eclipse.org/Platform_UI_Command_Design#Issue_102_-_Comm ands_implementation_of_label_changing
I have the a command defined in my plugin.xml that uses the suggested schema:
...
When performing a compare of a CVS vs a local copy of my code, I am looking for a way to create a zip file of the difference.
Example
**CVS Files**
File1.java
File2.java
**Local Files**
File1.java
File2.java
File3.java
If I perform a compare of the CVS vs Local code, it will find that File3.java is new, and that File2.java has chang...
I saw article about Including additional javax.* packages in your Android App
http://code.google.com/p/dalvik/wiki/JavaxPackages
.
.
.
and i want to do the same thing but using eclipse
so could anyone tell how to do it ??
...
There is a method getCompletionProposalAutoActivationCharacters in ContentAssistProcessor that can return characters which trigger the completion proposals. For example I can return new char[] { '.' } so that each time I type dot in the editor the word completion proposal shows up.
I thought that there should be a simular way to specif...
I would like to write an Eclipse plug-in that is able to import existing documentation into JavaDoc comments of existing Java code.
Background: I've generated Java code to communicate with an third party (native) program. Now I would like to import the documentation of the third party program into my generated code.
What I've already d...
Hi I have created a splash screen but I am not sure how to get it to start. I have tried putting it in the top folder but I can't get it to start, I realise this is because it is the last item I created on my app.
How do I get it to the top of the build path.
...
In a normal java application its possible to print the content of the classpath with:
String ss = System.getProperty("java.class.path");
System.out.println(ss);
But how do I print the classpath of an OSGI bundle created using the eclipse PDE wizard? In the activator its possible to get the current bundle like:
public void start(Bundl...
I am using Source->Implement Method sometimes, but I noticed that the generated code does not follow the defined code style from the preferences (the style is applied when I use Source->Format correctly) - Is there some setting I missed or is that a bug?
Using Eclipse Version 3.5.2 and CDT 6.0.2 on Ubuntu Linux 10.04 LTS.
Example: we d...
Is there a setting to let the debugger in eclipse automatically pause when a variable or object changes?
...
is there any drag and drop environment to work with GWT widgets.
or any user friendly IDE or plugin on IDE's
i remember using some thing like MyEclips for developing Hibernate was better then working with .xml files.
...
I developed my first (small) Andoid application using Eclipse and are now ready to transfer it to my Galaxy S mobile device (develping for Android 2.1)
Following another thread in SE, I changed the run mode in Eclipse to manual in the hope that I would be able to chose my phone and/or AVD every time I run the program.
The popup list h...
Hi,
I have setup my app to launch Google maps to a set location using the code below, but the map displays zoomed full and you cant see any roads you have to zoom out manually to see anything. How can I set the zoom level with the code below I've tried setZoom(16); but this has no effect.
if (mapnav == 10) {
String uri = "g...
I have a personal Eclipse RCP product (com.example.product) based on one personal feature (com.example.feature) which is composed of one personal plugin (com.example.plugin) and a bunch of others from Eclipse Helios (3.6). I want the app to check for updates and update itself if necessary from a p2 site. I want it to be headless, ie the ...
I am using Eclipse with Java 1.6. I was wondering what the preliminary steps were to set up the Stripes framework. (What do we do with the .jar file?)
I don't understand the basics of the framework, as I have thoroughly searched for a clear explanation (other then the Stripes website).
...
Hi,
when i startup eclipse, first thing i usually do is updating my source code to pull in changes from other developers (or from my home work). Sometimes i just forget it. But as we are usually working in a small team on HEAD, we all usually want to have the latest sources.
It would be nice to let eclipse automatically (like every hou...
I can run and debug my Android app on my phone just fine, most of the time. Then, seemingly randomly, when I try to run or debug my app from Eclipse, the Console in Eclipse says:
[2010-10-12 09:36:48 - myapp] Android Launch!
[2010-10-12 09:36:48 - myapp] adb is running normally.
[2010-10-12 09:36:48 - myapp] Performing com.mycompany.mya...
Hello!
I found something strange about an eclipse debugger.
First of all, when a program runs as a simple Java Application, everything is ok, but when I use debugger some references become null so that I catch NullPointerException.
Here is much more strange example:
System.out.println("the list size is " + list.getSize());
System.out...