eclipse

Problem with access permissions for using a jar file

I'm trying to build a test suite program (using JRE 1.6 under Eclipse IDE, Operating System: CentOS 5.4 64 bit) which uses an external jar file (installed under /lib/ext) for some operations. However, my test code is unable to use or link to the jar file and the following error is shown in Eclipse the method xxx of class yyy is inacces...

eclipse: use files in different projects or use different toolchains in one project

hi, the code i develop for avr microcontrollers i write so that it runs on the PC and only differs in one or more files (the port). till now i do that using makefiles but now id like to move to eclipse CDT with the AVR plugin. is there a way to use 2 different toolchains (x86 and avr compiler) in one project (and also tell these too...

Modify eclipse New File wizard?

I would like to modify an already existing wizard in eclipse. My plan is to copy the existing wizard plugin to a new plugin an make the changes there. But how do I enable this modified wizard in eclipse? I know how to create a local P2 update site but how do I make sure that the original wizard is replaced with the updated version? ...

Eclipse and Apache Axis2 plugin Java Soap -- Class not found

I have eclipse 3.5.1 installed along with the apache axis2 plug in... I'm trying to generate my web service by going file -> new-> axis2 service archiver... I go through the steps and select the bin directory of my project and when I get to the last step and type in the name of the class and click load it says "Error: Class not found" ...

How to use separate datbases for production and testing in an eclipse RCP app

I am writing an eclipse RCP app and I am trying to use a separate db for tests to prevent corrupting my production db. During the setup of the test db i need to execute an sql file to fill it with test data. Is there a way to tell the app to use a different db and execute a specific sql script (maybe via launch properties or maybe frag...

Eclipse - ButtonCLick --> new screen with text?

Im kinda new on developing for Android, and i've only completed apps like - hello world, paint pot etc. I know how to design the layout, but when it comes to the "activity" I alwats messes things up.. So now to my question - I'm creating a app to show my school schedule so I have 5 buttons (monday tuesday wednesday etc.) Then when I cl...

Generate Flex project files using Maven

I've got a Java/Flex project that I'm building using Maven. After doing some research I'm using the Flexmojos project (http://flexmojos.sonatype.org/) for the Flex part, and almost everything seems to work fine so far (after a bit of struggling). I'm using version 4.0-alpha-5 (4.0-SNAPSHOT didn't seem to work for me). The Flex projects ...

Zend Studio on Eclipse "HELIOS"

I'm trying to install Zend Studio on an existing installation of Eclipse HELIOS, but Zend doesn't want to behave. The PDF instructions here say it's for "Eclipse Galileo version 3.5.1 only". Sure enough, I'm getting a strange error on a Helios. Cannot complete the install because of a conflicting dependency. I've already upgraded to ...

What Free Open Source IDEs do you use?

I'm Looking for a new IDE to develop on, instead of Eclipse any suggestions? And if you wonder why i wasn't pleased with eclipse it's because the debugger is horrible... ...

OSGI Manifest in eclipse plugin

How do I include an OSGI Manifest in an eclipse plugin easily? Thanks. ...

Is there Scala plugin for Eclipse Helios (3.6)?

I have Eclipse Helios (3.6). I found one Scala plugin on Eclipse marketplace, but there was no "Install" button and description said there is no version of this plugin for Eclipse Helios. Is it possible to develop Scala on Eclipse Helios? How? ...

BIRT WebViewerExample - default location of report design

Per the BIRT documentation link text the default location should be under report folder. However, all samples have the report designs at the root. What is the recommended location for report designs, images, css, js files? Also, do I need to modify web.xml (I guessing, yes) if I put report designs in /report TIA ...

make: *** No rule to make target `all'. Stop. Eclipse error

Hi all, I've just downloaded Eclipse CDT developer kit (87MB) for Windows. I've also installed MinGW, and msys. I also added this to PATH: C:\msys\1.0\bin;C:\mingw\bin. and restarted computer after that. I've checked by type "make --version" in cmd and it works. However, for some reason I cannot compile my C project. I don't get bi...

How to find out in Eclipse if certain method is called from another method directly or indirectly?

How to find out in Eclipse if certain method is potentially invoked or reachable (directly or indirectly) from another method? Assume I want to refactor A.one() which can be negatively influenced by a side-effect in D.four(). Therefore I'd like to find out if D.four() can potentially be invoked from A.one(). I can see which methods are ...

Good avd settings for testing large screen devices with Android SDK?

I'd like to test an application on a variety of screen configurations so I know that it'll work (and the layouts will look right) on tablets and other oddly sized devices. Does anyone have any tips or configuration settings that would be helpful? ...

Application run well from eclipse, but fails to start, when it is deployed manually

I have web application using SpringFramework3.0.3.RELEASE, developed in Eclipse with m2eclipse plugin and deployed into Tomcat6.0.26. I can run it from Eclipse, but when copy target WAR int same tomcat instance ( removing WTP webapp first ) and restart I see following exception: Sep 14, 2010 5:54:42 PM org.apache.catalina.core.Applicati...

how to configure struts in eclipse galileo?

i've included jars in class path and i've created struts-config in web-inf bt it is giving the following error: servlet action is not available ...

why should a variable in a static method be declared as final in java

Hi, I am having a static method .In the method when I decalare a variable , it was showing an error in eclipse saying that the variable should be decalared as final. Can I know the reason for this , y should a variable in a static method be declared as final? I am writng an Android application where I should pass as an argument current ...

How do I make a (minimal) runnable jar file from a scala eclipse project

I have made a runnable jar using this process: http://garyboone.com/2009/06/creating-single-file-runnable-jars-in-scala-and-eclipse/?wscr=1366x768 editing the ant build.xml to include scala-library.jar (5.9 MB) Isn't i possible somehow to get eclipse to extract the needed parts of scala-library.jar? So I can get a smaller, less bloated ...

NoClassDefFoundError exception while using external library in EMF plugin project

Hi, I'm working on a EMF project where I've created a ecore model from a mdl file. I created the corresponding gencore file and generated the code from the gencore file. While EMF has a own serialization mechanism based on XMI I want to support my project with a own serializiation mechanism. So far, I've done the necessary steps and i...