eclipse

Can I use git in local area network ?

I want to use EGit in a small eclipse project with my colleagues, but we don't want to Submit the project to the github.com. What I should do with the next picture ? The ip address is 192.168.16.40 and the project is in D:\EclipseProjects\ForwardA.git. How I should fill the URI,Host,Repository Path ? Is the Authentiacation for the comp...

Publish and subscribe to dBus events with Eclipse EventAdmin?

D-Bus on Linux and the EventAdmin in Eclipse both offer a publish/subscribe model. I want to link the two, so I can publish an event to the EventAdmin in Eclipse and it publishes that event to D-Bus and vice versa. A module in Eclipse listens to selected D-Bus events and publishes them to the EventAdmin. I'm clear how to publish/subscrib...

jcraft, eclipse sftp plugin documentation

I installed jcraft, but don't know how to use. is there any documentation available?. I googled, checked their site with no help. ...

Eclipse: Files opened by multiple searches using same editor tab

When using the "file search" function in eclipse to find a bit of text in a ".java" file, I may get a list of several search results. Let's say I double click on the file "A.java" which then opens A.java in a new editor tab. If I then use the "file search" function again to find some other bit of text and this time double click on the ...

Trouble with Eclipse

Hi guys, I installed Eclipse Helios and m2eclipse. Next I created a maven project. Now Eclipse goes crazy. It leaks all the time, goes in endless loops (continously 50% CPU), throws PermGen Space Errors and crashes. I can't work. I tried to substitute the JDK with an older version, the same with maven and the same with eclipse. I also ...

Android separate code into packages

I'm just getting into my first android application and just wondering what the convention is here? Is it more organised to separate my code into various packages? For example. com.myfirstapp.activity; com.myfirstapp.database; I was thinking of doing this as a way of organising my code with database helper files for example kept it .d...

Can i put java files in a folder in a pydev project?

Hi guys, I have a .java and .class file which i put under a folder inside my pydev project in Eclipse (because im primarily using python). Inside my python script i wanted to call the java class file using os.system. os.system('java -mx1500m D:\\projects\\socialsense\\src\\ss\\samplefile\\test') However it says that my class file is...

Eclipse PropertySheetPage - Can it support a multi line property?

I want to use the Eclipse AdvancedPropertySection which uses PropertySheetPage to display and edit properties, but some of my properties are multi line (e.g. Description). Problem: I can't get the PropertySheetPage to display multi line properties. It displays them as a single line, like this: I tried using WrapTextPropertyDescripto...

identifying php unused variables

Hello, I have seen the bellow question and was wondering if there is something like it for eclipse. Also how can I make sure that this kind of errors get's thrown into my trigger error function so that I can write it to a log. Thank you for any help. http://stackoverflow.com/questions/2534176/identifying-php-unused-variables-in-emac...

Managing local SVN repos in Eclipse

How do you manage local repositories when using Eclipse? (I'm new to SVN and Eclipse.) I've just set up my first Eclipse PHP project with a Eclipse checkout from SNV. I mapped my repos to localhost/repos using in my apache http.conf file. That's fine for ONE repos, but I'm going to be using many repos. What is the best way to access ...

Any known problems/bugs with objectContribution (popup) to CVS History view? It's not working

Do you know of any problems or reported bugs with the Eclipse CVS history not showing a contributed popup for objectClass="org.eclipse.team.internal.ccvs.core.ILogEntry" ? I've a popup defined in the plugin.xml and it's not showing at all. The same popup is working without problems in Eclipse 3.0.2 Here is the popup definition at plugin...

Deleteing entites/objects from the "Data store" in eclipse.

I have been debugging an app in eclipse/jetty, and it has a bunch of invalid objects. How do i clear them out? Where are the data entities actually stored when running on your local machine?? ...

Integrate War-Plugin for m2eclipse into Eclipse Project

I set up a small web project with JSF and Maven. Now I want to deploy on a Tomcat server. Is there a possibility to automate that like a button in Eclipse that automatically deploys the project to Tomcat? I read about a the Maven War Plugin but I couldn't find a tutorial how to integrate that into my process (eclipse/m2eclipse). Can yo...

Values not showing up during debugging in eclipse PDT

I am trying to debug this simplepie.inc (called from index.php )which is dumping me with error during parsing one of the feed. After stepping through the line $utf8_data = 'UTF-8'; which I hardcoded in to test things out, the value of the variable remains <Uninitialized> as shown in the screenshot below. Why is that so? Variables and...

Eclipse using multiple Python interpreters with execnet

Hi there, I'm using the execnet package to allow communication between Python scripts interpreted by different Python interpreters. The following code (test_execnet.py): import execnet for python_version in ('python', 'python3'): try: gw = execnet.makegateway("popen//python="+python_version) ch = gw....

Installing Eclipse

I am installing Eclipse for RCP and RAP Developers, my old copy went rogue and decided to act up. So clean install time! Yay! I downloaded the new version copied it to opt folder and extracted it, then ran it. For some reason I cant install any plugins due to some crap error*, and it doesn't have list of default plugins, i deleted my ...

monodevelop shortcuts and auto-code

Hello, i'm using MonoDevelop after used Eclipse for several years. In eclipse when i create a class, eclipse auto-generates all stub methods from extended class or implemented interface. How i can obtain same job in monodevelop? Thanks ...

Getting groovy, maven, and eclipse to play nice together?

So we have some unit tests written in groovy. We have the Groovy Eclipse plugin going, we have gmaven going, but the problem is that the maven eclipse plugin doesn't automatically add the src/test/groovy directory as a source directory. So, I enlisted the build-helper plugin to add a source directory, but then the problem becomes the sou...

Creating SWT Forms using Eclipse similar to Visual Studio C#/VB, possible?

Hello, Please forgive if this question has been asked numerous times. I recently installed Eclipse Classic v3.6.0 which I need to create a little utility using Java. In Visual Studio I can create a new form then from the Toolbar I can drag and drop components (Button, TextBox, ListBox, etc) onto the Form. Is this possible using Eclip...

Error with Database in eclipse

Hi, here is my Arrival.java package one.two; import java.io.IOException; import java.util.ArrayList; import java.util.List; import android.app.ListActivity; import android.database.Cursor; import android.os.Bundle; import android.widget.ArrayAdapter; import android.widget.ListView; import android.widget.SimpleCursorAdapter; public cl...