Documentation about eclipse
From Wickle Wiki
Here we can see a lot of info about Eclipse IDE.
The first Video/tutorial was : Creating a CVS project or sharing it through Eclipse, view it here
Docs for editing EJBs with lomboz plugin for eclipse
UnsatisifiedLinkError when running an SWT or JFace application
Now there is an easy correction for this. Just go to "Run" | "Run...", which brings up the "Run" dialog. Then navigate to the "Arguments" tab and in the "VM Arguments:" text box, enter (for Eclipse 3.0.1):
-Djava.library.path=${system:ECLIPSE_HOME}/plugins/org.eclipse.swt.carbon_3.0.1/os/macosx/ppc (for Carbon on Mac OS X)
-Djava.library.path=${system:ECLIPSE_HOME}/plugins/org.eclipse.swt.win32_3.0.1/os/win32/x86 (for Win32 on Windows) or
-Djava.library.path=${system:ECLIPSE_HOME}/plugins/org.eclipse.swt.gtk_3.0.1/os/linux/x86 (for GTK2 on Linux).
For Eclipse 3.0, substitute 3.0.0 wherever you see 3.0.1.
Creating TAGS or SNAPSHOTS on a CVS from a project with eclipse
The most important thing to me on a development project i s the hability to take "snapshots" of a working project meanwhile i can continue to develop on unstable code. To make this on eclipse you only must to select TEAM->TAG AS VERSION, select a name for the version and voila. A new snapshot of the project is taken ... from the command line:
cvs tag REV_1_0
To download this version from the command line, to start working with it:
cvs checkout -r REV_1_0 my_module

