eclipse

Action into Submenu Context Menu Java JFace SWT Eclipse

Hi there! I'm having a slight problem with an Eclipse Plug-In in development. There is a view which is comparabe to a roster. There is a list of users in there. My problem is, that I'd like to add an context menu. The idea is to perform a right-click on a user and the menu should pop up. So far so good... but the problem is that I don't...

Eclipse Plugin Read Std Error

I am trying to write an Eclipse plugin which needs to read the std error inside eclipse. E.g. the red text that appears in the console. I cannot find the correct extension point for something like this. The best I could find was org.eclipse.ui.console.consolePatternMatchListeners but this just matches console lines regardless of their o...

How do I get Eclipse navigator to refocus, based on a new level of filter in mylyn?

Hi everyone, I am currently using eclipse and Mylyn. My problem is that when I change the level of interest required for an item to show up in mylyn context, I cannot get eclipse navigator to accept the new settings. In fact, if I close the task and open it again, the degree of interest meter-thingy has reset itself. The only solution ...

Android AVD not showing anything. only "ANDROID" in the middle of the screen.

I am an Android Newbie! please help. I have been following googles introduction tutorial and managed to install everything with no problems. but whenever i try to run the HelloAndroid example the avd launches but doesnt show anything. cone somebody help please? ...

[Eclipse] How can I launch different workspaces with different sets of plugins?

When using different workspaces for different SDKs, e.g. Appengine, Android & basic Java development, how can I make sure, only the required plugins are loaded when launching the desired workspace? ...

android emulator/eclipse deletes application files on redeployment

My Application downloads a file from a server and stores it in: /mnt/sdcard/Android/data/com.test/files. (the /mnt/sdcard is derived from Environment.getExternalStorageDirectory(); ) Everytime I redeploy the Application from eclipse(run menu) to the emulator it deletes the file. The Checkbox 'target/wipe user data' in the run configurat...

wap development

Hi folks How to configure or setting environment for wap development in eclipse Thanks and Regards Aswan ...

How do I set up a Google App Engine Project that uses Groovy in Eclipse?

How do I make a Groovy Google App Engine project in Eclipse? I have both the Groovy and the App Engine plugins installed. I'm already able to successfully make an App Engine or a Groovy project separately, but how do I make a project that is both? I tried just making an App Engine project and then adding a Groovy class to it, but I ge...

Eclipse: Java, no main method found

Ok I recently took all my code a manually imported it into an eclipse project from BlueJ, I then got use to the settings up "Run Configurations", finally thinking I was home free. Then I ran the code, and I got this error java.lang.NoSuchMethodError: main Exception in thread "main" so I figured I had to add a main method (I never had...

Installing Subclipse, M2Eclipse, and M2Eclipse Extras into Eclipse Helios from Command Line?

Dear All: I am trying to automate the install process for OpenMRS developers http://wiki.openmrs.org/display/docs/Step+by+Step+Installation+for+Developers I have found a helpful reference here: http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.platform.doc.isv/guide/p2_director.html And have created a command line: ./eclips...

Eclipse: Set maximum line length for auto formatting?

I am working with Java. If I hit Ctrl+Shift+F in Eclipse Helios, it will auto format my code. At a certain point, it wraps lines. I would like to increase the maximum line length. How can I do this? ...

How do I transfer .apk files to device using Eclipse

Gotta problem. My employer won't allow anybody access to run / line command tools on our computers. No way to run ADB (Android Debug Bridge) without that control. I'm using windows, no way to access the registry, no way to manually add cmd.exe, i've tried..) Screwing the staff is a sure way to reduce IT costs though, sigh. I notice ...

Creating a runnable JAR which includes .exe files via eclipse

Hey guys - I've looked through a plethora of forums online as well as asked many professional java developers but I was unable to find adequate assistance in creating a standalone runnable jar file of a financial application that I am currently finishing up. The application uses two external programs; an ImageMagick file conversion progr...

Package renaming in eclipse android project

I have an Android project created in eclipse.I want to modify the package name and application of the project.How to do that in eclipse? Thanks, Dheepak ...

Adding eclipse jvm arguments to version control

Hi, In our eclipse project we have some jvm arguments that are required for the project to work. The project is connected to clearcase for version control. How can we add the jvm arguments to version control so new developers will have them set up when they join the project (or have the rest of the team updated when someone makes a cha...

Error when installing the ADT plugins in Eclipse

I'm using Eclipse 3.5.2 and when I followed the steps on this tutorial(http://developer.android.com/guide/developing/tools/adt.html). I got an error message during the last steps. An error occurred while installing the items session context was:(profile=PlatformProfile, phase=org.eclipse.equinox.internal.provisional.p2.engine...

Resolved : How to add the java variable value in the Configuration util String -

Hi , I am writing Java code for calling ROR APIs .. I have written Java code to get all the blogs by public List<BlogBean> getBlogsXml() { return webResource.path(ConfigurationUtil.LIST_BLOGS).header(ConfigurationUtil.AUTHENTICATION_HEADER, authentication) .accept(MediaType.APPLICATION_XML_TYPE).get(new GenericType<Lis...

Error while launching external scanner

Error launching external sccanner info generator(gcc -E -P -v -dD C:/Documents/Workspace) Do any one know what is the problem this is for the windows . I downloaded the exact C version without java support but still it is showing this error . Thanks ...

Copy/paste on my ViewPart popup menu?

Hello, in my ViewPart I set copy/paste handlers IHandlerService handlerService = (IHandlerService) getViewSite().getService( IHandlerService.class); handlerService.activateHandler( ActionFactory.PASTE.getCommandId(), new PasteFavoritesHandler() ); handlerService.activateHandler( ActionFactory.COPY.getCommandId(), new CopyFavoritesHan...

Can Swing components under SWT be accelerated?

When using the SWT/AWT bridge to draw Swing components inside an SWT application, can these components benefit from AWT's hardware acceleration? ...