Package org.eclipse.team.ui.synchronize
Class ModelParticipantMergeOperation
java.lang.Object
org.eclipse.core.runtime.jobs.JobChangeAdapter
org.eclipse.team.ui.TeamOperation
org.eclipse.team.ui.synchronize.ModelOperation
org.eclipse.team.ui.synchronize.ModelMergeOperation
org.eclipse.team.ui.synchronize.ModelParticipantMergeOperation
- All Implemented Interfaces:
- IJobChangeListener,- IRunnableWithProgress
A model merge operation that uses a participant to preview the changes
 in either a dialog or the Synchronize view.
- Since:
- 3.2
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final intStatus code that can be returned from theModelMergeOperation.performMerge(IProgressMonitor)method to indicate that a subclass would like to force a preview of the merge.
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedCreate a merge participant operation for the scope of the given manager.
- 
Method SummaryModifier and TypeMethodDescriptionbooleanReturn whether the job that is running this operation should be considered a member member of the given family.protected abstract SynchronizationContextCreate a merge context for use by this operation.protected ModelSynchronizeParticipantCreate the synchronize participant to be used by this operation to preview changes.protected voidexecute(IProgressMonitor monitor) Perform a merge.protected voidexecuteMerge(IProgressMonitor monitor) Perform a merge.protected ISynchronizationContextReturn the synchronization context for the operation ornullif the operation doesn't have one or if it has not yet been created.protected StringReturn a string to be used in the preview request on the scope prompt ornullif a preview of the operation results is not possible.protected voidA preview of the merge has been requested.protected voidinitializeContext(IProgressMonitor monitor) Initialize the merge context for this merge operation.protected booleanReturn whether previews should occur in a dialog or in the synchronize view.Methods inherited from class org.eclipse.team.ui.synchronize.ModelMergeOperationhandleMergeFailure, handleNoChanges, handleValidationFailure, hasChangesOfInterest, performMerge, performMerge, validateMergeMethods inherited from class org.eclipse.team.ui.synchronize.ModelOperationbeginOperation, endOperation, getScope, getScopeManager, initializeScope, isPreviewRequested, promptForInputChange, promptIfInputChange, run, sortByExtensionMethods inherited from class org.eclipse.team.ui.TeamOperationcanRunAsJob, getGotoAction, getJobName, getKeepOperation, getOperationIcon, getPart, getSchedulingRule, getShell, isKeepOneProgressServiceEntry, isPostponeAutobuild, isSameFamilyAs, isUserInitiated, run, shouldRunMethods inherited from class org.eclipse.core.runtime.jobs.JobChangeAdapteraboutToRun, awake, done, running, scheduled, sleeping
- 
Field Details- 
REQUEST_PREVIEWpublic static final int REQUEST_PREVIEWStatus code that can be returned from theModelMergeOperation.performMerge(IProgressMonitor)method to indicate that a subclass would like to force a preview of the merge. The message of such a status should be ignored.- See Also:
 
 
- 
- 
Constructor Details- 
ModelParticipantMergeOperationCreate a merge participant operation for the scope of the given manager.- Parameters:
- part- the workbench part from which the merge was launched or- null
- manager- the scope manager
 
 
- 
- 
Method Details- 
initializeContextDescription copied from class:ModelMergeOperationInitialize the merge context for this merge operation. After this method is invoked, theModelOperation.getContext()method must return an instance ofIMergeContextthat is fully initialized.- Specified by:
- initializeContextin class- ModelMergeOperation
- Parameters:
- monitor- a progress monitor
- Throws:
- CoreException- if an error occurs
 
- 
executeprotected void execute(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException Description copied from class:ModelMergeOperationPerform a merge. FirstModelMergeOperation.initializeContext(IProgressMonitor)is called to determine the set of resource changes. Then theModelMergeOperation.executeMerge(IProgressMonitor)method is invoked.- Overrides:
- executein class- ModelMergeOperation
- Parameters:
- monitor- a progress monitor
- Throws:
- InvocationTargetException- if an error occurs
- InterruptedException- if operation is interrupted
 
- 
executeMergeDescription copied from class:ModelMergeOperationPerform a merge. This method is invoked fromModelMergeOperation.execute(IProgressMonitor)after the context has been initialized. If there are changes in the context, they will be validating by callingModelMergeOperation.validateMerge(IMergeContext, IProgressMonitor). If there are no validation problems,ModelMergeOperation.performMerge(IProgressMonitor)will then be called to perform the merge. If there are problems encountered or if a preview was requested,ModelMergeOperation.handlePreviewRequest()is called.- Overrides:
- executeMergein class- ModelMergeOperation
- Parameters:
- monitor- a progress monitor
- Throws:
- CoreException
 
- 
handlePreviewRequestprotected void handlePreviewRequest()Description copied from class:ModelMergeOperationA preview of the merge has been requested. By default, this method does nothing. Subclasses that wish to support previewing must override this method to preview the merge and theModelOperation.getPreviewRequestMessage()to have the option presented to the user if the scope changes.- Overrides:
- handlePreviewRequestin class- ModelMergeOperation
 
- 
belongsToDescription copied from class:TeamOperationReturn whether the job that is running this operation should be considered a member member of the given family. Subclasses can override this method in order to support the family based functionality provided by theIJobManager. By default,falseis always returned. Subclasses that override theisKeepOneProgressServiceEntrymethod do not need to override this method, but instead should overrideisSameFamilyAs.- Overrides:
- belongsToin class- TeamOperation
- Parameters:
- family- the family being tested.
- Returns:
- whether the job that is running this operation should be considered a member member of the given family.
 
- 
isPreviewInDialogprotected boolean isPreviewInDialog()Return whether previews should occur in a dialog or in the synchronize view.- Returns:
- whether previews should occur in a dialog or in the synchronize view
 
- 
getContextDescription copied from class:ModelOperationReturn the synchronization context for the operation ornullif the operation doesn't have one or if it has not yet been created. By default, the method always returnsnull. Subclasses may override.- Overrides:
- getContextin class- ModelOperation
- Returns:
- the synchronization context for the operation or null
 
- 
getPreviewRequestMessageDescription copied from class:ModelOperationReturn a string to be used in the preview request on the scope prompt ornullif a preview of the operation results is not possible. By default,nullis returned but subclasses may override.- Overrides:
- getPreviewRequestMessagein class- ModelOperation
- Returns:
- a string to be used in the preview request on the scope prompt
 or nullif a preview of the operation results is not possible
 
- 
createParticipantCreate the synchronize participant to be used by this operation to preview changes. By default, aModelSynchronizeParticipantis created using the scope manager (ModelOperation.getScopeManager()) context from (createMergeContext()) and job name (TeamOperation.getJobName()) of this operation. Subclasses may override this method.Once created, it is the responsibility of the participant to dispose of the synchronization context when it is no longer needed. - Returns:
- a newly created synchronize participant to be used by this operation
 
- 
createMergeContextCreate a merge context for use by this operation. This method is not long running so the operation should not refresh the context or perform other long running operations in this thread. However the context may start initializing in another thread as long as the job used to perform the initialization belongs to the family that matches the context.- Returns:
- a merge context for use by this operation
 
 
-