eclipse

How to handle Eclipse in a multiuser environment (500+) ?

How would you go about handling Eclipse in a multiuser and multisite environment with, say, 500 or more developers? Having each one downloading their own installation would lead to a support and maintenance nightmare. Forcing each one to use a central installation doesnt feel ideal either and would limit the users option to download p...

problem Using MathFP class in Eclipse

HI I am tryin to develop a game in j2m using eclipse. To handle floating point I have downloaded the MathFp class. I did the following steps i placed the mathFP.class file in net/jscience/math/kvm/ directory 1> Ziped the folder containig the downloaded class. 2> java build path->libraries->ADD jar->selected my zipped folder. 3> in the ...

Eclipse Google -App -Engine "Will NOT Enhance"

First Eclipse: Cannot get rid of this error... Have tried every suggested fix on google.. Persistent class "Class com.blahb.blahblah.master.UserToken does not seem to have been enhanced. You may want to rerun the enhancer and check for errors in the output." has no table in the database, but the operation requires it. Please chec...

gdb debugging arm app. under windows

Hi i want to debug my programms which are cross compiled on windows for arm architecture by using the codesourcery gcc. I have the following things debugging: sam-ice jtag/jlink debugger arm-none-eabi-gdb when i use the command line inteface arm-none-eabi-gdb programm.elf i cannot run the programm under windows. under eclipse i get so...

How to change the style of String in SWT?

I develop some features based on Eclispe GEF. I want to create a label with some string. for example: new Label("This is a good test stensece") Now, I want to get these effects "good" is in Bold font, and "test" is in italic. It looks like can use some HTML way to implement that So,is there any one knows that? Thank you very much...

Adding Hyperlink to eclipse Console- Cannot navigate to the specified line in the FileLink

Hi , I am writing a text editor in eclipse and added a console view to it for displaying the error messages and warnings. With the FileLink Class and MessageConsole.addHyperLink method i have successfully added a hyper link to the console which navigates to the corresponding text editor file in the Eclipse workbench. I want to navigate ...

USB debug with eclipse

Unable to launch App in telephone device. Device is visible (ADB devices), debug USB on(in phone). In Eclipse I get the following timeout error: [2010-10-14 14:07:30 - TA] Android Launch! [2010-10-14 14:07:30 - TA] adb is running normally. [2010-10-14 14:07:30 - TA] Performing com.xxxxx.ta.TA activity launch [2010-10-14 14:08:00 - TA] U...

CheckStyle-like Eclipse-plugin for CSS and JavaScript?

I'm currently writing on some coding and style guidelines regarding JavaScript and CSS parts of projects. Eclipse offers some basic functionality in this area for situations where code is generated but is there also something en-par with CheckStyle for at least marking guideline-violations as warnings/errors? Or how do you handle coding...

Can't find genClass for class 'ATAGPlan' in package atagmetamodel' in package atagmetamodel

I am taking my very first steps with GMF, developing a sample model . When I try to "Create generator model" from the gmfmap editor I am getting an error message of not founding the appropriate class.They told me to delete and reload again the genmodel file.I did it ,i recreated the genmodel and the autogenerated code from the emf genera...

How embeded http server in own plugin on Eclipse?

I need an embedded http server. Which can be controlled by pressing the button (Start, Stop) in the plugin. I looked at the jetty, but don't understand how to use it. ...

How to make XmlBeans play nicely with eclipse (and the maven-eclipse-plugin)

The XmlBeans Eclipse plugin seems moribund, last released a long time ago. Meanwhile, when you run XmlBeans on an XSD, what comes out is not just Java source code, but also binary classes. I can't figure out how to get Eclipse to include those classes in the classpath when running code that uses the resulting API, and the result is clas...

Select which method to "Step Into" in debugger

Netbeans has a nice "Step Into" feature where if there are multiple method calls on the same line, you can use the arrow keys to choose which one you meant. You can see a screenshot and description on this new and noteworthy page. I am wondering, does Eclipse have the same feature? I see that Eclipse does have Step Filtering, but that's...

How to install the Android ADP Plugin in Eclipse?

I followed the instructions on ADT Plugin for Eclipse but I got this message when installing in Eclipse: Cannot complete the install because one or more required items could not be found. Software being installed: Android Development Tools 0.9.9.v201009221407-60953 (com.android.ide.eclipse.adt.feature.group 0.9.9.v201009221407-60953) ...

How to enable code assist for Solr in php using ZendStudio

Hi: I have just installed the Solr extension for php and I'm trying to set ZendStudio to recognize the lib so I can get code assist for it. I read here that I should put a stub file for the library in the path, but I couldn't find such a file, and before I code it myself... here I am. Thanks! ...

Built-in Unit testing in Eclipse?

I'm moving my java project from Netbeans to Eclipse. I'm new to Eclipse and I can't figure out how to create or run unit tests. In Netbeans I could just right click a source file to generate test stubs. And to run tests I just chose a "Run Tests" menu option. How do I do this in Eclipse? ...

Java equivalent of .Net Solution file type

Hello, I'm new to Java and starting to organize my first project which will be a conversion from a .Net solution with several projects attached (one GUI project and several supporting class projects). I'm using Eclipse and I see project files, but I'm wondering is there a way to organize them into a "solution"? Something that links al...

How do you Prevent Eclipse Crashing when Switching Workspaces

I'm trying to switch to a new workspace in Eclipse, but no matter what I do the GUI closes and hangs at the console. There is no debug output or errors messages. Ok, this can't be a bug in Eclipse, so what do I need to fix on my system to get it working? I'm running on Ubuntu 10.10, the eclipse version is listed: Eclipse SDK Version: 3...

Getting field type in a method in eclipse

How do I programmatically get the field type from a statement inside a method like this : Foo foo = getSomeFoo(); If it is field, I can know the type of the element. ...

How do I display a byte array as an array of hex bytes or unsigned decimal numbers in the Eclipse Java debugger?

I want to view a byte array in the Eclipse (Helios Release, build id: 20100617-1415) Java debugger as an array of hex bytes (2 digits each) or unsigned decimal numbers? Is that possible? How? For example, I want to display this: ...as: 0, 48, 71, 22, 139, 166, ... ...or as: 0x00, 0x30, 0x47, 0x16, 0x8B, 0xA6, ... (This is a simil...

pydev not recognizing python installation with django

I have python installed with django. I know the installation is there because I installed it following the directions and in the command line I can do "import python" and there is no crash. When I try creating a django project in pydev, I get an error: "Django not found." What could the problem be? ...