What is the difference between Eclipse and MyEclipse?
Answers were Sorted based on User's Feedback
Answer / jaxmechela
1 . MyEclipse is a lienced product which was build on Eclipse
2. Eclipse will provide few funanlaities.
3. MyEclipse provides all advance futures
4. Eclipse is base for so many other IDE's like IBMRAD,
Rational Rose ,etc.
| Is This Answer Correct ? | 51 Yes | 9 No |
Answer / uday kiran
MyEclipse is the extra plugin for eclipse for EJB features
| Is This Answer Correct ? | 16 Yes | 6 No |
Answer / ravi
Eclipse is an IDE it is used to develop java programs. My Eclipse is a plug in ,It cannot be used alone,it should be used along with Eclipse IDE,My Eclipse plug in is used to develop web based application,and it will support to develop frameworks applicationa also(STRUTS,SPRING,JSF).
| Is This Answer Correct ? | 14 Yes | 7 No |
Answer / rohit kumar
Eclipse is a platform for developing, and MyEclipse is just
a series of plugins for that platform.
| Is This Answer Correct ? | 18 Yes | 12 No |
Answer / deepak divvela
Eclipse needs MyEclipse plugable source
But MyEclipse did not required any plugable source
| Is This Answer Correct ? | 20 Yes | 27 No |
Answer / mallikarjuna
Eclipse software is sufficient fore developing stand alone projects only if we want work with other advanced J2EE technologies must require plug-in software's that problem not there in Myeclipse id
| Is This Answer Correct ? | 0 Yes | 7 No |
Answer / srinivas
Eclipse needs MyEclipse plugable source
But MyEclipse did not required any plugable source
| Is This Answer Correct ? | 9 Yes | 21 No |
Is it possible to create Userdefined Unchecked Exception also?If Yes, give an example?
what is mean by hasing and maping in java platform and advantage?
Hi Friends, i have searched in google but not clear. can you give bank example with synchronized keyword
Hi Friends , am newbie to ajax. For example just consider one account registration - A form contains 8 text fields with submit button. In this form second texbox contains "username " . On right side of text box there is a label box . On clilck action i need to determine user is available or not. Is it possible on clicking label or should i click submit button.
Hi frnds how to lock an user when he enter wrong credentials more than 3 time using java or j2ee tech take username and password in a bean no need to connect DB and validate give me some sample application code or links its urgent for me thanks in advance
VSS Objectives
who should use JNDI?
what is the difference between through and throws?
where is JNDI being used in java platform?
Should we create system software ( e.g operating system ) in java ?
what is class/object diagram
How to call the m1() method of Base class in below snippet ? class Base { public void m1() { System.out.println("Base m1 "); } public void m2() { System.out.println("Base m1 "); } } ====================== class Derived extends Base { public void m1() { System.out.println("Derived m1"); } public void m3() { System.out.println("Derived m3"); } public static void main(String[] args) { Base ob=new Derived(); ob.m1(); //System.out.println("Hello World!"+ob.m1()); } }