Dali Provisional API
Release 3.2

org.eclipse.jpt.common.core
Interface JptWorkspace


public interface JptWorkspace

The Dali state corresponding to an Eclipse workspace.

To retrieve the Dali workspace corresponding to an Eclipse workspace:

 IWorkspace workspace = ResourcesPlugin.getWorkspace();
 JptWorkspace jptWorkspace = (JptWorkspace) workspace.getAdapter(JptWorkspace.class);
 

See org.eclipse.jpt.common.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.3

Method Summary
 LibraryValidatorManager getLibraryValidatorManager()
          Return the manager for the workspace's library validators.
 ResourceLocatorManager getResourceLocatorManager()
          Return the manager for the workspace's resource locators.
 JptResourceTypeManager getResourceTypeManager()
          Return the manager for the workspace's Dali resource types.
 IWorkspace getWorkspace()
          Return the corresponding Eclipse workspace.
 

Method Detail

getWorkspace

IWorkspace getWorkspace()
Return the corresponding Eclipse workspace.


getResourceTypeManager

JptResourceTypeManager getResourceTypeManager()
Return the manager for the workspace's Dali resource types.


getLibraryValidatorManager

LibraryValidatorManager getLibraryValidatorManager()
Return the manager for the workspace's library validators.


getResourceLocatorManager

ResourceLocatorManager getResourceLocatorManager()
Return the manager for the workspace's resource locators.


Dali Provisional API
Release 3.2

Copyright (c) 2012 Oracle. All rights reserved.