org.eclipse.ui.part

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE Eclipse » ui workbench » org.eclipse.ui.part 
org.eclipse.ui.part
Package-level Javadoc Classes for the creation of workbench parts that integrate with the Eclipse Platform User Interface.

Package Specification

A workbench part is a visual component within a workbench page.  There are two types: view and editor, as defined by IViewPart and IEditorPart.   An editor is typically used to edit or browse a document or input object.  A view is typically used to navigate a hierarchy of information (like the workspace), open an editor, or display properties for the active editor.  This package provides a base implementation for the definition of views and editors.
 
Java Source File NameTypeComment
CellEditorActionHandler.javaClass Handles the redirection of the global actions Cut, Copy, Paste, Delete, Select All, Find, Undo and Redo to either the current inline cell editor or the part's supplied action handler.
CoolItemGroupMarker.javaClass A group marker used by EditorActionBars to delineate CoolItem groups. Use this marker when contributing to the ToolBar for the EditorActionBar.
DrillDownAdapter.javaClass Implements a simple web style navigation metaphor for a TreeViewer.
DrillDownComposite.javaClass Class DrillDownComposite implements a simple web style navigation metaphor.
DrillFrame.javaClass
DrillStack.javaClass
EditorActionBarContributor.javaClass Standard implementation of IEditorActionBarContributor.

If instantiated and used as-is, nothing is contribututed.

EditorInputTransfer.javaClass The EditorInputTransfer class is used to transfer an IEditorInput and corresponding editorId from one part to another in a drag and drop operation.
EditorPart.javaClass Abstract base implementation of all workbench editors.
IContributedContentsView.javaInterface This interface is used to identify workbench views which allow other parts (typically the active part) to supply their contents.
IDropActionDelegate.javaInterface Interface for actions supplied by extensions to the org.eclipse.ui.dropActions extension point.
IntroPart.javaClass Abstract base implementation of an intro part.
IPage.javaInterface This interface has been replaced by IPageBookViewPage but is preserved for backward compatibility.
IPageBookViewPage.javaInterface Interface for a page in a pagebook view.
IPageSite.javaInterface The primary interface between a page and the outside world.
ISetSelectionTarget.javaInterface Interface for views which support reveal and select.
IShowInSource.javaInterface Parts which need to provide a particular context to a Show In...
IShowInTarget.javaInterface This interface must be provided by Show In targets (parts listed in the Show In prompter).
IShowInTargetList.javaInterface Show In sources which need to provide additional entries to the Show In list of targets can provide this interface.
IWorkbenchPartOrientation.javaInterface The IWorkbenchPartOrientation is the interface that defines the orientation of the part.
MessagePage.javaClass A message page display a message in a pagebook view.
MultiEditor.javaClass A MultiEditor is a composite of editors.
MultiEditorInput.javaClass Implements an input for a MultiEditor.
MultiPageEditor.javaClass Abstract superclass of all multi-page workbench editors.
MultiPageEditorActionBarContributor.javaClass Abstract base class for managing the installation/deinstallation of global actions for multi-page editors.
MultiPageEditorPart.javaClass A multi-page editor is an editor with multiple pages, each of which may contain an editor or an arbitrary SWT control.

Subclasses must implement the following methods:

  • createPages - to create the required pages by calling one of the addPage methods
  • IEditorPart.doSave - to save contents of editor
  • IEditorPart.doSaveAs - to save contents of editor
  • IEditorPart.isSaveAsAllowed - to enable Save As
  • IEditorPart.gotoMarker - to scroll to a marker

Multi-page editors have a single action bar contributor, which manages contributions for all the pages.

MultiPageEditorSite.javaClass Site for a nested editor within a multi-page editor.
MultiPageSelectionProvider.javaClass Manages the current selection in a multi-page editor by tracking the active nested editor within the multi-page editor.
Page.javaClass Abstract base superclass for pages in a pagebook view.
PageBook.javaClass A pagebook is a composite control where only a single control is visible at a time.
PageBookView.javaClass Abstract superclass of all multi-page workbench views.

Within the workbench there are many views which track the active part.

PageSite.javaClass This implementation of IPageSite provides a site for a page within a PageBookView.
PluginDropAdapter.javaClass Adapter for adding handling of the PluginTransfer drag and drop transfer type to a drop action.
PluginTransfer.javaClass This class can be used to transfer an instance of PluginTransferData between two parts in a workbench in a drag and drop operation.

In every drag and drop operation there is a DragSource and a DropTarget.

PluginTransferData.javaClass Record for transferring data during a drag and drop operation between different plug-ins.
ShowInContext.javaClass Carries the context for the Show In action.
ViewPart.javaClass Abstract base implementation of all workbench views.
WorkbenchPart.javaClass Abstract base implementation of all workbench parts.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.