Dali Provisional API
Release 3.2

org.eclipse.jpt.jaxb.core
Interface JaxbWorkspace


public interface JaxbWorkspace

The Dali JAXB state corresponding to an Eclipse workspace.

To retrieve the JAXB workspace corresponding to an Eclipse workspace:

 IWorkspace workspace = ResourcesPlugin.getWorkspace();
 JaxbWorkspace jaxbWorkspace = (JaxbWorkspace) workspace.getAdapter(JaxbWorkspace.class);
 

See org.eclipse.jpt.jaxb.core/plugin.xml:org.eclipse.core.runtime.adapters.

Not intended to be implemented by clients.

Provisional API: This class is part of an interim API that is still under development and expected to change significantly before reaching stability. It is available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.

Since:
3.2

Method Summary
 JaxbPlatformManager getJaxbPlatformManager()
          Return the manager for the workspace's JAXB platforms.
 JaxbProjectManager getJaxbProjectManager()
          Return the manager for all the workspace's JAXB projects.
 JptWorkspace getJptWorkspace()
          Return the workspace's Dali workspace.
 IWorkspace getWorkspace()
          Return the corresponding Eclipse workspace.
 

Method Detail

getWorkspace

IWorkspace getWorkspace()
Return the corresponding Eclipse workspace.


getJptWorkspace

JptWorkspace getJptWorkspace()
Return the workspace's Dali workspace.


getJaxbPlatformManager

JaxbPlatformManager getJaxbPlatformManager()
Return the manager for the workspace's JAXB platforms.


getJaxbProjectManager

JaxbProjectManager getJaxbProjectManager()
Return the manager for all the workspace's JAXB projects.


Dali Provisional API
Release 3.2

Copyright (c) 2012 Oracle. All rights reserved.