Package Name | Comment |
org.eclipse.ui | |
org.eclipse.ui.actions | |
org.eclipse.ui.dialogs | |
org.eclipse.ui.ide |
Package-level Javadoc
APIs for the IDE-specific portion of the Eclipse Platform User Interface.
Package Specification
This package contains APIs for the Eclipse Platform User Interface that are IDE
specific.
|
org.eclipse.ui.ide.dialogs |
Package-level Javadoc
APIs for dialogs in the IDE-specific portion of the Eclipse Platform User Interface.
Package Specification
This package containsthe dialog APIs for the Eclipse Platform User Interface that
are IDE specific.
|
org.eclipse.ui.ide.fileSystem |
Package-level Javadoc
APIs for the IDE-specific support for the
org.eclipse.core.filesystem.fileSystem extension.
Package Specification
This package contains APIs for the Eclipse Platform User Interface that
support for the org.eclipse.core.filesystem.fileSystem extension
|
org.eclipse.ui.ide.undo |
Package-level Javadoc
APIs that provide undo and redo behavior for operations that manipulate
the workspace.
Package Specification
This package contains APIs for the Eclipse Platform User Interface that
support the undo and redo of operations that manipulate the workspace.
Undoable operations that create, delete, move, and copy resources are
provided.
The typical usage pattern is that a client creates one of the concrete operations
and executes it using the platform operation history. For example, the following
snippet deletes the project "Blort" without deleting its contents, and adds it
to the operation history so that it can be undone and redone.
IProject project = getWorkspace().getRoot().getProject("Blort");
// assume that getMonitor() returns a suitable progress monitor
project.create(getMonitor());
project.open(getMonitor());
DeleteResourcesOperation op = new DeleteResourcesOperation(
new IResource[] { project }, "Delete Project Blort", false);
PlatformUI.getWorkbench().getOperationSupport()
.getOperationHistory().execute(operation, getMonitor(), null);
|
org.eclipse.ui.internal.ide |
Package-level Javadoc
Internal implementation of the IDE-specific portion of the Eclipse Platform User
Interface.
Package Specification
This package does not contain any API.
|
org.eclipse.ui.internal.ide.actions | |
org.eclipse.ui.internal.ide.application |
Package-level Javadoc
Internal implementation of the IDE- application of the Eclipse Platform User
Interface.
Package Specification
This package does not contain any API.
|
org.eclipse.ui.internal.ide.application.dialogs | |
org.eclipse.ui.internal.ide.commands | |
org.eclipse.ui.internal.ide.dialogs | |
org.eclipse.ui.internal.ide.filesystem |
Package-level Javadoc
Internal classes for the IDE-specific support for the
org.eclipse.core.filesystem.fileSystem extension.
Package Specification
This package contains internal classes for the Eclipse Platform User Interface that
support for the org.eclipse.core.filesystem.fileSystem extension
|
org.eclipse.ui.internal.ide.handlers | |
org.eclipse.ui.internal.ide.misc | |
org.eclipse.ui.internal.ide.model | |
org.eclipse.ui.internal.ide.registry | |
org.eclipse.ui.internal.ide.undo | |
org.eclipse.ui.internal.ide.update | |
org.eclipse.ui.internal.provisional.views.markers | |
org.eclipse.ui.internal.provisional.views.markers.api | |
org.eclipse.ui.internal.views.bookmarkexplorer | |
org.eclipse.ui.internal.views.framelist | |
org.eclipse.ui.internal.views.navigator | |
org.eclipse.ui.internal.views.properties | |
org.eclipse.ui.internal.views.tasklist | |
org.eclipse.ui.internal.wizards.datatransfer |
Package-level Javadoc
Internal implementation of the data transfer support of the Eclipse Platform User
Interface.
Package Specification
This package does not contain any API.
|
org.eclipse.ui.internal.wizards.newresource | |
org.eclipse.ui.model | |
org.eclipse.ui.part | |
org.eclipse.ui.views.bookmarkexplorer |
Package-level Javadoc
Provides the standard Bookmarks view which displays
bookmarks on resources.
|
org.eclipse.ui.views.framelist |
Package-level Javadoc
Provides support for a web-browser style of navigation within a view by maintaining a list
of frames. Each frame holds a snapshot of a view at some point in time.
Includes support for use with a tree viewer.
|
org.eclipse.ui.views.markers |
Package-level Javadoc
Utility classes for working with markers in views
|
org.eclipse.ui.views.markers.internal | |
org.eclipse.ui.views.navigator |
Package-level Javadoc
Provides the standard Resource Navigator view which
presents the tree of resources in the workspace.
|
org.eclipse.ui.views.properties | |
org.eclipse.ui.views.tasklist |
Package-level Javadoc
Provides the standard Task List view for displaying
tasks and problem annotations on resources.
|
org.eclipse.ui.wizards.datatransfer |
Package-level Javadoc
Provides the standard Import and Export wizards for
moving resources into and out of the workspace.
|
org.eclipse.ui.wizards.newresource |
Package-level Javadoc
Provides the standard wizards for creating files,
folders, and projects in the workspace.
|