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

org.eclipse.team.ui.synchronize
Class ParticipantPageSaveablePart


java.lang.Object
  extended by 

org.eclipse.team.ui.SaveablePartAdapter
      extended by 

org.eclipse.team.ui.PageSaveablePart
          extended by 
org.eclipse.team.ui.synchronize.ParticipantPageSaveablePart
All Implemented Interfaces:
IContentChangeListener, IAdaptable, ISaveableWorkbenchPart, ISaveablePart, IWorkbenchPart

Deprecated. Clients should use a subclass of PageCompareEditorInput and CompareUI.openCompareDialog(org.eclipse.compare.CompareEditorInput)

public class ParticipantPageSaveablePart
extends PageSaveablePart
implements IContentChangeListener

Displays a synchronize participant page combined with the compare/merge infrastructure. This only works if the synchronize page viewer provides selections that are of the following types: ITypedElement and ICompareInput or if the participant is a ModelSynchronizeParticipant.

Since:
3.0

Field Summary
 
Fields inherited from interface org.eclipse.team.ui. ISaveableWorkbenchPart
PROP_DIRTY
 
Fields inherited from interface org.eclipse.ui. IWorkbenchPart
PROP_TITLE
 
Constructor Summary
ParticipantPageSaveablePart ( Shell shell, CompareConfiguration cc, ISynchronizePageConfiguration pageConfiguration, ISynchronizeParticipant participant)
          Deprecated. Creates a part for the provided participant.
 
Method Summary
 void contentChanged ( IContentChangeNotifier source)
          Deprecated. Called whenever the content of the given source has changed.
protected   Control createPage ( Composite parent, ToolBarManager toolBarManager)
          Deprecated. Create the page for this part and return the top level control for the page.
 void dispose ()
          Deprecated. Disposes of this workbench part.
 void doSave ( IProgressMonitor pm)
          Deprecated. This method flushes the content in any viewers.
protected   ICompareInput getCompareInput ( ISelection selection)
          Deprecated. Return a compare input that represents the selection.
  ISynchronizePageConfiguration getPageConfiguration ()
          Deprecated. Return the synchronize page configuration for this part
  ISynchronizeParticipant getParticipant ()
          Deprecated. Return the Synchronize participant for this part
protected   ISelectionProvider getSelectionProvider ()
          Deprecated. Return the selection provider for the page.
  String getTitle ()
          Deprecated. Returns the title of this workbench part.
  Image getTitleImage ()
          Deprecated. Returns the title image of this workbench part.
 boolean isDirty ()
          Deprecated. Returns whether the contents of this part have changed since the last save operation.
protected  void prepareInput ( ICompareInput input, CompareConfiguration configuration, IProgressMonitor monitor)
          Deprecated. Prepare the compare input for display in a content viewer.
 
Methods inherited from class org.eclipse.team.ui. PageSaveablePart
createPartControl, getControl, getShell, prepareCompareInput, setDirty, setNavigator, setPageDescription, setShowContentPanes
 
Methods inherited from class org.eclipse.team.ui. SaveablePartAdapter
addPropertyListener, doSaveAs, getAdapter, getSite, getTitleToolTip, isSaveAsAllowed, isSaveOnCloseNeeded, removePropertyListener, setFocus
 
Methods inherited from class java.lang. Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ParticipantPageSaveablePart

public ParticipantPageSaveablePart(
Shell shell,
                                   
CompareConfiguration cc,
                                   
ISynchronizePageConfiguration pageConfiguration,
                                   
ISynchronizeParticipant participant)
Deprecated. 
Creates a part for the provided participant. The page configuration is used when creating the participant page and the resulting compare/merge panes will be configured with the provided compare configuration.

For example, clients can decide if the user can edit the compare panes by calling CompareConfiguration.setLeftEditable(boolean) or CompareConfiguration.setRightEditable(boolean).

Parameters:
shell - the parent shell for this part
cc - the compare configuration that will be used to create the compare panes
pageConfiguration - the configuration that will be provided to the participant prior to creating the page
participant - the participant whose page will be displayed in this part
Method Detail

dispose

public void dispose()
Deprecated. 
Description copied from interface: IWorkbenchPart
Disposes of this workbench part.

This is the last method called on the IWorkbenchPart. At this point the part controls (if they were ever created) have been disposed as part of an SWT composite. There is no guarantee that createPartControl() has been called, so the part controls may never have been created.

Within this method a part may release any resources, fonts, images, etc.  held by this part. It is also very important to deregister all listeners from the workbench.

Clients should not call this method (the workbench calls this method at appropriate times).

Specified by:
dispose in interface IWorkbenchPart
Overrides:
dispose in class SaveablePartAdapter

getTitleImage

public 
Image getTitleImage()
Deprecated. 
Description copied from interface: IWorkbenchPart
Returns the title image of this workbench part. If this value changes the part must fire a property listener event with PROP_TITLE.

The title image is usually used to populate the title bar of this part's visual container. Since this image is managed by the part itself, callers must not dispose the returned image.

Specified by:
getTitleImage in interface IWorkbenchPart
Returns:
the title image

getTitle

public 
String getTitle()
Deprecated. 
Description copied from interface: IWorkbenchPart
Returns the title of this workbench part. If this value changes the part must fire a property listener event with PROP_TITLE.

The title is used to populate the title bar of this part's visual container.

Specified by:
getTitle in interface IWorkbenchPart
Returns:
the workbench part title (not null)

isDirty

public boolean isDirty()
Deprecated. 
Description copied from interface: ISaveablePart
Returns whether the contents of this part have changed since the last save operation. If this value changes the part must fire a property listener event with PROP_DIRTY.

Note: this method is called often on a part open or part activation switch, for example by actions to determine their enabled status.

Specified by:
isDirty in interface ISaveablePart
Overrides:
isDirty in class PageSaveablePart
Returns:
true if the contents have been modified and need saving, and false if they have not changed since the last save

contentChanged

public void contentChanged(
IContentChangeNotifier source)
Deprecated. 
Description copied from interface: IContentChangeListener
Called whenever the content of the given source has changed.

Specified by:
contentChanged in interface IContentChangeListener
Parameters:
source - the source whose contents has changed

doSave

public void doSave(
IProgressMonitor pm)
Deprecated. 
Description copied from class: PageSaveablePart
This method flushes the content in any viewers. Subclasses should override if they need to perform additional processing when a save is performed.

Specified by:
doSave in interface ISaveablePart
Overrides:
doSave in class PageSaveablePart
Parameters:
pm - a progress monitor

createPage

protected 
Control createPage(
Composite parent,
                             
ToolBarManager toolBarManager)
Deprecated. 
Description copied from class: PageSaveablePart
Create the page for this part and return the top level control for the page.

Specified by:
createPage in class PageSaveablePart
Parameters:
parent - the parent composite
toolBarManager - the toolbar manager for the page
Returns:
the top-level control for the page

getSelectionProvider

protected final 
ISelectionProvider getSelectionProvider()
Deprecated. 
Description copied from class: PageSaveablePart
Return the selection provider for the page. This method is called after the page is created in order to register a selection listener on the page.

Specified by:
getSelectionProvider in class PageSaveablePart
Returns:
the selection provider for the page

prepareInput

protected void prepareInput(
ICompareInput input,
                            
CompareConfiguration configuration,
                            
IProgressMonitor monitor)
                     throws 
InvocationTargetException
Deprecated. 
Prepare the compare input for display in a content viewer. This method is called from PageSaveablePart.prepareCompareInput(ICompareInput) and may be called from a non-UI thread. This method should not be called by others.

Specified by:
prepareInput in class PageSaveablePart
Parameters:
input - the input
configuration - the compare configuration
monitor - a progress monitor
Throws:
InvocationTargetException
Since:
3.2

getPageConfiguration

public 
ISynchronizePageConfiguration getPageConfiguration()
Deprecated. 
Return the synchronize page configuration for this part

Returns:
Returns the pageConfiguration.

getParticipant

public 
ISynchronizeParticipant getParticipant()
Deprecated. 
Return the Synchronize participant for this part

Returns:
Returns the participant.

getCompareInput

protected 
ICompareInput getCompareInput(
ISelection selection)
Deprecated. 
Return a compare input that represents the selection. This input is used to feed the structure and content viewers. By default, a compare input is returned if the selection is of size 1 and the selected element implements ICompareInput. Subclasses may override.

Overrides:
getCompareInput in class PageSaveablePart
Parameters:
selection - the selection
Returns:
a compare input representing the selection
Since:
3.2

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