|
Interface Summary |
| JavaManagedTypeUiDefinition |
A managed type UI definition provides the labels and images for the
managed type indicated by JavaManagedTypeUiDefinition.getType(). |
| JpaContextModelRootModel |
Standard adapter for retrieving a JPA root
context node model with change notification when the JPA root context
node is created or destroyed:
IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject("Foo Project");
JpaRootContextNodeModel jpaRootContextNodeModel = (JpaJpaRootContextNodeModel) project.getAdapter(JpaJpaRootContextNodeModel.class);
JpaRootContextNode jpaRootContextNode = jpaRootContextNodeModel.getValue();
|
| JpaFileModel |
Standard adapter for retrieving a JPA file model
with change notification when the JPA file is created or destroyed
(or its JPA project is created or destroyed):
IFile file = (IFile) ResourcesPlugin.getWorkspace().getRoot().findMember("Foo.java");
JpaFileModel jpaFileModel = (JpaFileModel) file.getAdapter(JpaFileModel.class);
JpaFile jpaFile = jpaFileModel.getValue();
|
| JpaPlatformUi |
This interface is to be implemented by a JPA vendor to provide extensions to
JPA UI functionality. |
| JpaPlatformUiFactory |
This interface is to be implemented by a JPA vendor to build a JpaPlatformUi. |
| JpaPlatformUiManager |
The org.eclipse.jpt.jpa.ui.jpaPlatformUis extension point
corresponding to a Dali JPA workbench. |
| JpaPlatformUiProvider |
This interface is to be implemented by a JPA vendor to provide extensions to
JPA UI functionality. |
| JpaProjectModel |
Standard adapter for retrieving a JPA project model
with change notification when the JPA project is created or destroyed:
IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject("Foo Project");
JpaProjectModel jpaProjectModel = (JpaProjectModel) project.getAdapter(JpaProjectModel.class);
JpaProject jpaProject = jpaProjectModel.getValue();
|
| JpaProjectsModel |
Standard adapter for retrieving a model of a workspace's
JPA projects
with change notification when the model changes:
IWorkspace workspace = ResourcesPlugin.getWorkspace();
JpaProjectsModel jpaProjectsModel = (JpaProjectsModel) workspace.getAdapter(JpaProjectsModel.class);
|
| JpaWorkbench |
The Dali JPA state corresponding to an Eclipse workbench. |
| MappingResourceUiDefinition |
UI definitions for a specific mapping file
resource type. |
| PersistenceResourceUiDefinition |
Persistence resource UI definition. |
| ResourceUiDefinition |
Resource UI definition. |