eclipse

how to compare 2 ms word document with org.eclipse.compare api and java.

hi I want to compare 2 ms word document, after searching lot I found 2 ways we can do this. 1) compare with docx4j api. 2) compare with org.eclipse.compare api. with docx4j we can compare only 2 paragraph and it will works only with .docx extention. so I feel like if we can compare docs with eclips compare api than it will be better...

How to pass Java textfield to an array list?

Guys, kindly help me how to pass the values of my inputs in my JTextField(ID,LastName,FirstName,Course,Year) into my ArrayList without replacing the existing elements. At the same i'll be using my ArrayList stored values to append in my JTextArea(summary) ////// PALOS TEXTFIELD List<Form> myList = new ArrayList<Form>(); id = new...

BIRT: Java - eventhandler, loaction of the files

Hello! I want to implement eventhandling for my reports via java-classes... where do i have to put the files? And do i need .class-files or .jar-files? BIRT 2.1.3, RCP - Designer ...

Eclipse: How to show user who changed this line in CVS?

Someone once showed me a cool IntelliJ Idea plugin that would show all the user commit information from CVS right there in the Java source editor. It had a vertical bar on the right of the window and every code block changed/committed by a user was highlighted with different color and mouse-over would show the details about user and ve...

R cannot be resolved - android error

Hi, I just downloaded and installed the new android sdk. I wanted to create a simple application to test drive it. the widzard creates this code: package eu.mauriziopz.gps; import android.app.Activity; import android.os.Bundle; public class ggps extends Activity { /** Called when the activity is first created. */ @Override ...

eclipsen hibernate tool reverse engine fail

when i run, i get java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 Index: 0, Size: 0 just like error faced by many other users at http://www.mail-archive.com/[email protected]/msg50006.html anyone what caused the error? ...

eclipse default jpa implentation library where to download?

In eclipse, the "default implementation library" what jars files do I need to include if I do not want to use server runtime? I'm refering to this tutorial http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.jpt.doc.user/task_create_new_project.htm ...

How install multiple JDK on Windows?

I want to install JDK 1.5 and 1.6 on XP, is it possible? how to do it Also, I am using Eclipse how to setup using different JDK for different projects? thanks. ...

How to add files to Eclipse CDT project with CMake?

Hi, I'm having problem getting the source and header files added into my Eclipse CDT project with CMake. In my test project (which generates and builds fine) I have the following CMakeLists.txt: cmake_minimum_required(VERSION 2.6) project(WINCA) file(GLOB WINCA_SRC_BASE "${WINCA_SOURCE_DIR}/src/*.cpp") file(GLOB WINCA_SRC_HPP_BASE "${...

how to run php script in eclipse

I installed Eclipse PDT-all-in-one-win32-2.0.0GA and WampServer 2.0. I try to run as PHP Script in eclipse but I have this error: "The current debugger does not have any defined PHP executable." How do I create this .exe ?? ...

Coloring rows in a TreeViewer

How to color rows in a TreeViewer? It seems there have been a couple of changes since the previous version, now we are migrating to Eclipse 3.4. It would be great if you can provide a code sample or point me to an open-source project that does this. ...

Eclipse open console apps in separate window.

Is there a way to configure eclipse to open console apps in a new window rather than it's own console when you run/debug them? I'm debugging a client/server application and I'd like to see the output of both apps at once and not have to switch between the tabs... ...

starting a struts2 project in eclipse

Hello everyone, I am in the process of starting a struts2 project. While I was able to use struts2-blank as a quick out-of-the-box project, I have trouble creating my own struts2 project in Eclipse. All necessary jars are located in the web-inf/lib directory, but as soon as I add the following lines to my web.xml <filter> <filter-...

How should I display a validation error detected by an ICellEditorValidator?

I have a TableViewer with an ICellModifier which seems to work fine. I set an ICellEditorValidator on one of the cell editors, though, and I can't get it to behave the way I would like. Here's my abbreviated code: cellEditors[1] = new TextCellEditor(table); cellEditors[1].setValidator(new ICellEditorValidator() { public String isV...

Stop eclipse from line wrapping?

Is there a way to get eclipse to stop erasing existing line breaks? If I have a method signature like this, I can't figure out how to get eclipse to leave it alone: void foo( int arg1, int arg2, int arg3, int arg4) { // ... } With various settings it will either collapse the arguments down to one line, or wrap the...

Eclipse 3.3 Europa JDT TextHover

I want to show my own text hover in eclipse for some specific words? Please provide me some examples ...

How do I delete an Eclipse perspective for a plugin I uninstalled?

I was evaluating the Enterprise IDE plugin for Eclipse, and ultimately decided not to purchase it. After I uninstalled the plugin, I was left with a bunch of perspective buttons (the ones in the far upper-right-hand corner) which I can't remove. How do I get rid of the manually, without nuking my workspace? Edit: To be clear, right-cl...

configure dojo in eclipse

How do I configure dojo in eclipse? Is there any plugins? What are the steps for doing the same? I am using eclipse ganymede.I get a error when i try using the ATF ...

Ant Script Example

I would like to make a very simple ant script that does 1 thing, which is to bulid a jar file. But when I try to use a very simple example, it fails due to dependancies on jars that my source depends on. So, How you you specify jars that there are jars that need to be in the class path when building an Ant target. <project name="proje...

Can I add JavaDoc to a package easily with Eclipse?

I use javadoc to document my classes and methods. I would like to add some overview information to my packages, too. I like how Eclipse creates a stub of a matching Doc Comment for each class or method once I type /**<Enter>. Does Eclipse have an easy way to generate a package.html file, too? ...