Does eclipse have its own library, or does java have a big shared library that all IDE’s use?
Thanks, and sorry for my lack of knowledge.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Eclipse has its own platform/framework for developing GUI applications in general and IDE in particular. This in turn is based on the OSGi standard for modular Java applications.
Eclipse even includes a native code widget library (SWT) that is used instead of Swing.
Large parts of this infrastructure are shared among the Eclipse family of IDE (such as Aptana), but not really with other IDE such as Netbeans. OTOH, some task-specific code, such as drivers to connect to source control systems and databases, is usable with other platforms as well.
Eclipse also has its own Java compiler.