Eclipse interface used in other Application - eclipse

I'm looking for some stuff that learn how use Eclipse IDE interface in my own application.
Someone know how? I couldn't find something abou it. Tips
Thanks

You are probably looking for the Eclipse Richt Client Platform. You might want to start here: http://wiki.eclipse.org/Eclipse_RCP_How-to

Related

Java Netbeans System Using Biometric

Our group we're asked to develop a system that used a biometric. Please, if anyone knows any site already do the system we aim to do that using NetBeans as our platform.
Did you have a look at the NetBeans Platform showcases? Maybe there is some application that might look interesting to you.
Otherwise Geertjan seems to did some work with a fingerprint reader as a NetBeans Plugin, maybe this might help.
Otherwise you should get a bit more specific what you mean by "biometric" and what kind of stuff you would like to plugin in the NetBeans Platform. Generally as soon as you have a Java lib for whatever you want to do, you can use the NetBeans Platform.

How to develop a Netbeans Platform Application in Eclipse?

For me, Eclipse is the IDE to work with when I like to develop a Java application. But I like Swing more than SWT, so I'd like to use the Netbeans Platform for my Application.
Is it possible to develop a Netbeans Platform application in Eclipse? Where can I find information about this?
You are setting out on a great endeavour, and I want to congratulate you on your decision.
With me it is just the same. I love working with MyEclipse and Pulse. To me the Eclispe JDT are still superior to what the NetBeans IDE Editor offers - though I really have to say that the NetBeans Development Team is doing well on catching up ...
Ok, I was just reminded that this is only about questions and answers, so here is the answer:
!!! YES !!! you can develop with Eclipse for NetBeans Platform !!! BUT !!! it will be painful. Using Maven can help - but you will still forfeit all the wirzards available from within NetBeans IDE eventually finding yourself writing a lot of code which could have been generated for you.
In order to stop messing up the Q&A paradigm of this site I would love to refer you the following link on Geertjan's Blog:
http://blogs.oracle.com/geertjan/entry/let_s_get_that_netbeans
I frequently revisit this entry to see if there are any new thoughts. Feel free to post there. As far as I can tell this is the best information around at the moment.
Best regards,
Thomas G.

JBoss gettingstarted.zip

I am looking for the gettingstarted.zip or the examples in the jboss tutorial, but could not find them, especially the sources for the jsfejb3 example. Are these examples removed from the distribution or am I to stupid to find them?
Do you mean the example shown in http://docs.redhat.com/docs/en-US/JBoss_Enterprise_Application_Platform/4.3/html-single/Getting_Started_Guide/index.html#About_the_Example_Applications ?
If so it's available in the "Application Platform 4.3.0.GA_CP09 documentation" available from https://access.redhat.com/downloads/
this might be what you are looking for JBOSS Start Guide.zip, also maybe try JBoss Sourceforge page
edit: try this maybe JSF-EJB3 Example
and these guys LINK seem to have got working what you are having trouble with maybe something in thier posts can help

Is there a good Netbeans plugin for R?

I am looking for a good Netbeans plugin for R. Any suggestions?
There isn't any way to make it work seemlessly. As a Netbeans user, I understand how convenient such a plugin would be. The closest that you can get is probably R-Java, but that isn't right for most applications.

How to launch minimal eclipse?

This my seem a little odd but I want to start eclipse (v3.5) in the most minimal version possible. Pherhaps just the core and the ui component without anything else. I'm new to eclipse Plugin Development so I don't really know if this is possible at all?
I googled this topic but there seems to be no useful info out there. Perhaps someone can help me...
Thanks
I found the solution. On this webpage in Section 3 "Create your first RCP application". There a minimal application based on the Extensions
org.eclipse.core.runtime.apllications
org.eclipse.ui.perspectives
is created.