Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

FAQ How do I create Java elements?

Revision as of 13:55, 30 May 2013 by Globtek.web.gmail.com (Talk | contribs) (See Also:)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


The Java model is made up of IJavaElement objects. Java elements represent all levels of a Java project, from the project itself all the way down to the types, methods, and fields. The Java model can be seen as a logical view of the underlying IWorkspace resource model.


An important characteristic of IJavaElements is that they are handle objects. This means that simply obtaining a Java element instance does not imply that the Java element exists. You can create IJavaElement handles for Java projects, packages, and compilation units that do not exist in your workspace. Conversely, IJavaElement instances do not always exist for all portions of the Java projects that do exist. IJavaElement handles are created lazily as they are requested by various clients. If multiple clients request handles on the same Java element, they will get equal, but not necessarily identical, handle objects.


The implication here is that creating a Java element has two meanings. You can create IJavaElement handles by asking the parent element for one. For example, IType.getMethod will return an IMethod handle but will not create that method in the file on disk. The JavaCore class also provides factory methods for creating Java elements for a given file, folder, or project in the workspace. For example, the following will create an ICompilationUnit handle for a given file handle:

   IFile file = ...;//a file handle
   ICompilationUnit unit = 
      JavaCore.createCompilationUnitFrom(file);


To create the contents on disk, you need to use the various create methods on the handle objects. For example, IType.createMethod will create a Java method on disk. Because creation will fail if such a method already exists, you should first use a method handle to find out whether the method already exists:

   IType type = ...;
   String body = "public String toString() {"+
      "return super.toString();}";
   IMethod method = type.'''getMethod'''("toString", new String[0]);
   if (!method.exists())
      method = type.createMethod(body, null, false, null);


See Also:

FAQ_How_are_resources_created?

FAQ_What_is_the_Java_model?


This FAQ was originally published in Official Eclipse 3.0 FAQs. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the Eclipse Public License v1.0.

Back to the top