Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 


Eclipse Platform
Release 3.5

Uses of Class
org.eclipse.ui.PartInitException

Packages that use PartInitException
org.eclipse.debug.ui Provides a generic debugger user interface that clients may customize via standard workbench extension points. 
org.eclipse.debug.ui.sourcelookup Provides a user interface for debug platform source lookup facilities. 
org.eclipse.search.ui.text Provides the base classes to implement a search result view part for searches with textual matches. 
org.eclipse.team.ui.history Application programming interfaces for working with history Package Specification This package specifies the API for providing history pages to the history view. 
org.eclipse.team.ui.synchronize Contains the team synchronization presentation framework and support for the Synchronize View. 
org.eclipse.ui Application programming interfaces for interaction with and extension of the Eclipse Platform User Interface. 
org.eclipse.ui.browser Web browser support APIs for opening URLs from Eclipse applications Package Specification This package provides APIs that allow Eclipse plug-ins to create instances of Web browsers and open URLs in them. 
org.eclipse.ui.console Application programming interfaces for interaction with the Eclipse console. 
org.eclipse.ui.forms.editor Support for forms-based multi-page editors. 
org.eclipse.ui.ide APIs for the IDE-specific portion of the Eclipse Platform User Interface. 
org.eclipse.ui.intro Application programming interfaces for interaction with and extension of the product introduction parts. 
org.eclipse.ui.intro.config Provides support for customizing welcome content and presentation. 
org.eclipse.ui.navigator Provides the Common Navigator framework. 
org.eclipse.ui.part Classes for the creation of workbench parts that integrate with the Eclipse Platform User Interface. 
org.eclipse.ui.texteditor Provides a framework for text editors obeying to the desktop rules. 
org.eclipse.ui.views.bookmarkexplorer Provides the standard Bookmarks view which displays bookmarks on resources. 
org.eclipse.ui.views.navigator Provides the standard Resource Navigator view which presents the tree of resources in the workspace. 
org.eclipse.ui.views.properties Provides the standard Property Sheet view which displays custom properties of the active workbench part's current selection. 
org.eclipse.ui.views.tasklist Provides the standard Task List view for displaying tasks and problem annotations on resources. 
 

Uses of PartInitException in org.eclipse.debug.ui
 

Methods in org.eclipse.debug.ui that throw PartInitException
 void AbstractDebugView. init ( IViewSite site, IMemento memento)
           
 

Uses of PartInitException in org.eclipse.debug.ui.sourcelookup
 

Methods in org.eclipse.debug.ui.sourcelookup that throw PartInitException
 void CommonSourceNotFoundEditor. init ( IEditorSite site, IEditorInput input)
           
 

Uses of PartInitException in org.eclipse.search.ui.text
 

Methods in org.eclipse.search.ui.text that throw PartInitException
protected  void AbstractTextSearchViewPage. showMatch ( Match match, int currentOffset, int currentLength)
          Deprecated. Use AbstractTextSearchViewPage.showMatch(Match, int, int, boolean) instead
protected  void AbstractTextSearchViewPage. showMatch ( Match match, int currentOffset, int currentLength, boolean activate)
          Opens an editor on the given element and selects the given range of text.
 

Uses of PartInitException in org.eclipse.team.ui.history
 

Methods in org.eclipse.team.ui.history that throw PartInitException
static  AbstractDecoratedTextEditor RevisionAnnotationController. openEditor ( IWorkbenchPage page, IFile file)
          Open a text editor that supports the use of a revision ruler on the given file.
static  AbstractDecoratedTextEditor RevisionAnnotationController. openEditor ( IWorkbenchPage page, Object fileRevision, IStorage storage)
          Open a text editor that supports the use of a revision ruler on the given file.
 

Uses of PartInitException in org.eclipse.team.ui.synchronize
 

Methods in org.eclipse.team.ui.synchronize that throw PartInitException
 void ISynchronizePage. init ( ISynchronizePageSite site)
          Initialize this page with workbench part that contains the page.
 void AbstractSynchronizeParticipant. init ( String secondaryId, IMemento memento)
          Classes that are persisted must override this method and perform the following initialization.
 void ModelSynchronizeParticipant. init ( String secondaryId, IMemento memento)
           
 void ISynchronizeParticipant. init ( String secondaryId, IMemento memento)
          Initializes this participant with the given participant state.
 void SubscriberParticipant. init ( String secondaryId, IMemento memento)
           
 

Uses of PartInitException in org.eclipse.ui
 

Methods in org.eclipse.ui that return PartInitException
  PartInitException[] MultiPartInitException. getExceptions ()
          Returns an array of exceptions, corresponding to parts that could not be intialized correctly.
 

Methods in org.eclipse.ui that throw PartInitException
  IEditorInput IEditorReference. getEditorInput ()
          Returns the editor input for the editor referenced by this object.
 void IEditorPart. init ( IEditorSite site, IEditorInput input)
          Initializes this editor with the given editor site and input.
 void IViewPart. init ( IViewSite site)
          Initializes this view with the given view site.
 void IViewPart. init ( IViewSite site, IMemento memento)
          Initializes this view with the given view site.
  IEditorPart IWorkbenchPage. openEditor ( IEditorInput input, String editorId)
          Opens an editor on the given input.
  IEditorPart IWorkbenchPage. openEditor ( IEditorInput input, String editorId, boolean activate)
          Opens an editor on the given input.
  IEditorPart IWorkbenchPage. openEditor ( IEditorInput input, String editorId, boolean activate, int matchFlags)
          Opens an editor on the given input.
  IViewPart IWorkbenchPage. showView ( String viewId)
          Shows the view identified by the given view id in this page and gives it focus.
  IViewPart IWorkbenchPage. showView ( String viewId, String secondaryId, int mode)
          Shows a view in this page with the given id and secondary id.
 

Constructors in org.eclipse.ui with parameters of type PartInitException
MultiPartInitException ( IWorkbenchPartReference[] references, PartInitException[] exceptions)
          Creates a new exception object.
 

Uses of PartInitException in org.eclipse.ui.browser
 

Methods in org.eclipse.ui.browser that throw PartInitException
  IWebBrowser IWorkbenchBrowserSupport. createBrowser (int style, String browserId, String name, String tooltip)
          Creates the new web browser instance.
  IWebBrowser IWorkbenchBrowserSupport. createBrowser ( String browserId)
          Creates the new web browser instance.
  IWebBrowser IWorkbenchBrowserSupport. getExternalBrowser ()
          Returns a shared instance of the external web browser.
  IWebBrowser AbstractWorkbenchBrowserSupport. getExternalBrowser ()
           
 void IWebBrowser. openURL ( URL url)
          Opens a URL on this Web browser instance.
 

Uses of PartInitException in org.eclipse.ui.console
 

Methods in org.eclipse.ui.console that throw PartInitException
 void TextConsolePage. init ( IPageSite pageSite)
           
 

Uses of PartInitException in org.eclipse.ui.forms.editor
 

Methods in org.eclipse.ui.forms.editor that throw PartInitException
 int FormEditor. addPage ( IEditorPart editor, IEditorInput input)
          Adds a complete editor part to the multi-page editor.
 int FormEditor. addPage ( IFormPage page)
          Adds the form page to this editor.
 void FormEditor. addPage (int index, IEditorPart editor, IEditorInput input)
          Adds a complete editor part to the multi-page editor at the specified position.
 void FormEditor. addPage (int index, IFormPage page)
          Adds the form page to this editor at the specified index (0-based).
protected  void FormEditor. configurePage (int index, IFormPage page)
          Configures the form page.
 void FormEditor. init ( IEditorSite site, IEditorInput input)
          Overrides super to plug in a different selection provider.
 

Uses of PartInitException in org.eclipse.ui.ide
 

Methods in org.eclipse.ui.ide that throw PartInitException
static  IEditorDescriptor IDE. getEditorDescriptor ( IFile file)
          Returns an editor descriptor appropriate for opening the given file resource.
static  IEditorDescriptor IDE. getEditorDescriptor ( IFile file, boolean determineContentType)
          Returns an editor descriptor appropriate for opening the given file resource.
static  IEditorDescriptor IDE. getEditorDescriptor ( String name)
          Returns an editor descriptor appropriate for opening a file resource with the given name.
static  IEditorDescriptor IDE. getEditorDescriptor ( String name, boolean inferContentType)
          Returns an editor descriptor appropriate for opening a file resource with the given name.
static  IEditorPart IDE. openEditor ( IWorkbenchPage page, IEditorInput input, String editorId)
          Opens an editor on the given object.
static  IEditorPart IDE. openEditor ( IWorkbenchPage page, IEditorInput input, String editorId, boolean activate)
          Opens an editor on the given object.
static  IEditorPart IDE. openEditor ( IWorkbenchPage page, IFile input)
          Opens an editor on the given file resource.
static  IEditorPart IDE. openEditor ( IWorkbenchPage page, IFile input, boolean activate)
          Opens an editor on the given file resource.
static  IEditorPart IDE. openEditor ( IWorkbenchPage page, IFile input, boolean activate, boolean determineContentType)
          Opens an editor on the given file resource.
static  IEditorPart IDE. openEditor ( IWorkbenchPage page, IFile input, String editorId)
          Opens an editor on the given file resource.
static  IEditorPart IDE. openEditor ( IWorkbenchPage page, IFile input, String editorId, boolean activate)
          Opens an editor on the given file resource.
static  IEditorPart IDE. openEditor ( IWorkbenchPage page, IMarker marker)
          Opens an editor on the file resource of the given marker.
static  IEditorPart IDE. openEditor ( IWorkbenchPage page, IMarker marker, boolean activate)
          Opens an editor on the file resource of the given marker.
static  IEditorPart IDE. openEditor ( IWorkbenchPage page, URI uri, String editorId, boolean activate)
          Opens an editor on the given IFileStore object.
static  IEditorPart IDE. openEditorOnFileStore ( IWorkbenchPage page, IFileStore fileStore)
          Opens an editor on the given IFileStore object.
 

Uses of PartInitException in org.eclipse.ui.intro
 

Methods in org.eclipse.ui.intro that throw PartInitException
 void IIntroPart. init ( IIntroSite site, IMemento memento)
          Initializes this intro part with the given intro site.
 

Uses of PartInitException in org.eclipse.ui.intro.config
 

Methods in org.eclipse.ui.intro.config that throw PartInitException
 void IStandbyContentPart. init ( IIntroPart introPart, IMemento memento)
          Initializes this intro standby content part with the given intro site.
 void CustomizableIntroPart. init ( IIntroSite site, IMemento memento)
           
 

Uses of PartInitException in org.eclipse.ui.navigator
 

Methods in org.eclipse.ui.navigator that throw PartInitException
 void CommonNavigator. init ( IViewSite aSite, IMemento aMemento)
           Note: This method is for internal use only.
 

Uses of PartInitException in org.eclipse.ui.part
 

Methods in org.eclipse.ui.part that throw PartInitException
 int MultiPageEditorPart. addPage ( IEditorPart editor, IEditorInput input)
          Creates and adds a new page containing the given editor to this multi-page editor.
 void MultiPageEditorPart. addPage (int index, IEditorPart editor, IEditorInput input)
          Creates and adds a new page containing the given editor to this multi-page editor.
 void AbstractMultiEditor. init ( IEditorSite site, IEditorInput input)
           
abstract  void EditorPart. init ( IEditorSite site, IEditorInput input)
           
 void MultiPageEditorPart. init ( IEditorSite site, IEditorInput input)
          The MultiPageEditorPart implementation of this IEditorPart method sets its site to the given site, its input to the given input, and the site's selection provider to a MultiPageSelectionProvider.
 void AbstractMultiEditor. init ( IEditorSite site, MultiEditorInput input)
           
 void IntroPart. init ( IIntroSite site, IMemento memento)
          The base implementation of this IIntroPartmethod ignores the memento and initializes the part in a fresh state.
 void IPageBookViewPage. init ( IPageSite site)
          Initializes this page with the given page site.
 void ViewPart. init ( IViewSite site)
           
 void PageBookView. init ( IViewSite site)
           
 void ViewPart. init ( IViewSite site, IMemento memento)
           
 

Uses of PartInitException in org.eclipse.ui.texteditor
 

Methods in org.eclipse.ui.texteditor that throw PartInitException
 void AbstractTextEditor. init ( IEditorSite site, IEditorInput input)
           
protected  void AbstractTextEditor. internalInit ( IWorkbenchWindow window, IEditorSite site, IEditorInput input)
          Implements the init method of IEditorPart.
 

Uses of PartInitException in org.eclipse.ui.views.bookmarkexplorer
 

Methods in org.eclipse.ui.views.bookmarkexplorer that throw PartInitException
 void BookmarkNavigator. init ( IViewSite site, IMemento memento)
          Deprecated.  
 

Uses of PartInitException in org.eclipse.ui.views.navigator
 

Methods in org.eclipse.ui.views.navigator that throw PartInitException
 void ResourceNavigator. init ( IViewSite site, IMemento memento)
          Deprecated.  
 

Uses of PartInitException in org.eclipse.ui.views.properties
 

Methods in org.eclipse.ui.views.properties that throw PartInitException
protected   PropertySheet NewPropertySheetHandler. findPropertySheet ( ExecutionEvent event, PropertyShowInContext context)
          Returns a PropertySheet instance
 void PropertySheet. init ( IViewSite site)
           
 

Uses of PartInitException in org.eclipse.ui.views.tasklist
 

Methods in org.eclipse.ui.views.tasklist that throw PartInitException
 void TaskList. init ( IViewSite site, IMemento memento)
          Deprecated.  
 


Eclipse Platform
Release 3.5

Guidelines for using Eclipse APIs.

Copyright (c) Eclipse contributors and others 2000, 2008. All rights reserved.


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire