Reputation: 55
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.
Upvotes: 0
Views: 80
Reputation: 262504
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.
Upvotes: 1
Reputation: 5952
JDT is the Java infrastructure of Eclipse. It is used by Eclipse and is popular outside of it as well, but there is no "library that all IDE's share".
Upvotes: 0
Reputation: 308763
All IDEs don't use a big shared library.
IntelliJ is nothing like Eclipse.
Upvotes: 0