Hi all, I am trying to use Eclipse|NetBeans for Remote System Development in Solaris.
What I exactly want is: Use these IDE to Build,Debug and CheckIn purpose using Solaris C/C++
compiler and dbx debugger. I want to create the file in solaris from IDE compile and debug in IDE finaly checkIn using IDE.
What I have achieved(only in NetBe...
I have an eclipse project with image folder. I need to create an ImageIcon from an image located in this folder but can not figure out how to tell it to look in the folder with out giving exact position on my system which I do not want to do as the project gets moved around to different pc's.
Code example
ImageIcon ai = new ImageIcon("...
Hi, i am having the same problem described in the following post "Android emulator reports unknown virtual device" http://stackoverflow.com/questions/3384070/android-emulator-reports-unknown-virtual-device and have followed all of the instructions in an attempt to resolve but still i cannot run my AVD.
I only have one drive on my Windo...
I have written some code in eclipse which has a lot of blank lines.
I need to format the code and remove the blank lines.
How do I go about this?
...
So I started to write a POJO class, created public variables and now want to get getters and setters for them (folowing Java Naming Conventions)
so I have for example something like
package logic;
import java.util.Set;
import java.util.HashSet;
public class Route {
private Long id;
private String name;
private int number;
pri...
I have developed my first small Android application using Eclipse and managed to transfer it to my Samsung Galaxy S mobile phone.
My collegue at work has got another Android mobile phone running the same version (Android 2.1).
How can I give him my new application without him needing to install an development environment? Is this possi...
I've got a project (A) which references code in a different project (B). I've linked the two by adding B into the External Libraries list in A. So PyDev PYTHONPATH now has Source Folders as project A's source, and External Libraries contains B's source path.
The problem I'm having is that breakpoints set in B are ignored, and the code d...
What do people think is the best way of setting up a Java, maven-2 web project so a new developer can come on board easily?
Do you checkin you project settings, .classpath, .project .settings folder etc into source control and use variables?
Or
Is it better to just checkin code and use the maven eclipse plugin to generate project sett...
OK I have a feeling I'm doing something that's not "accepted practice" but here's what I would like: in the Eclipse package explorer, I see the following: (dot represents a clickable arrow that I can use to expand the folder)
PROJECT
Source Folder
Package
Class Package.SubPackageFooBarPackage.OtherSubPackagePackage.OtherSub...
we are currently starting a project involving people on windows and linux and using SVN.
The problem is that people who want to use Visual Studio (2010 for most of them) have problem with the folder structure and the syncing of there project.
they've got ankhsvn (http://ankhsvn.open.collab.net/), they are mapping the project to real fo...
I'm trying to use the relocate function in Eclipse to switch the svn server my projects are looking at. I open the SVN Repositories view, right click the repository, choose relocate, type in the new url, and it just keeps spitting back:
org.tigris.subversion.javahl.ClientException: svn: Server does not support retrieving information abo...
Hello, I need your help,
I'm using Eclipse and Pydev plugin as python IDE.
I have configured and set environment variables, libraries etc etc
I created a project, and a module.
When I write these lines and run the program, it gives an error:
`a = 3
b = 4.6
print "%d is the value of a, %.2f is the value of b" %(a, b)`
and the error m...
is it possible to have an interactive session through pydev for using matplotlib? The problem is that I cannot get shell access to drive the charts as the interpretor halts after the show() command. I would like to have an interactive session through pydev.
Interactive sessions are well described by the matplotlib manual here: http://ma...
So I was using Eclipse and I went to go copy some import statements I had selected but I somehow miss-typed and the coolest thing happened: A snippet package was created and a class Snippet.java was created which looked like this:
package snippet;
public class Snippet {
public static void main(String[] args) {
// Selected c...
I have installed the plugin many times before, but this time I keep getting this error:
'Install' has encountered a problem
An error occurred while installing the items
Eclipse has some memory issues when running on my machine, so I just want to install the bare minimum plugins, etc.
Has anyone got any ideas how to get arou...
I want to view a byte array in the Eclipse (Helios Release, build id: 20100617-1415) Java debugger as a char array? Is that possible? How?
For example, I want to display this:
...as: '\0', '0', 'G', '\22', etc.
...
We are moving our application to the OSGI platform (All developers are using Eclipse) and are trying to figure out the best team environment for developing our bundles.
We have bundles from multiple sources:
Common bundles from projects such as Orbit or Apache that are managed by outside agencies.
Bundles that wrap domain specific jar...
I have developed two android apps...when i install them on my phone to test them.. they overwrite each other. I do not want this to happen. The intent is to have both installed on the phone as separate apps.. how do i fix this? I developed them with eclipse.
...
The application reads a key from a file to hit production vs test server.
I want to create a test apk build that will pick test key and second build apk for release that will pick the production key
I am currently building app using eclipse
...
I am new to Eclipse plugin development. I am developing a plugin which is only available inside an intranet and the user has to be prompted everytime a new version of the plugin is available. The plugin has an update site.
Whats the best way to do this? Is it possible to install the new version programatically?
I am targeting Eclipse 3...