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.compare
Interface IStreamMerger


Deprecated. Clients should use org.eclipse.team.core.mapping.IStorageMerger instead.

public interface IStreamMerger

This interface defines a single operation for performing a three-way merge on three input streams. The merged result is written to an output stream.

Clients must implement this interface when contributing new mergers to the org.eclipse.compare.streamMergers extension point.

Since:
3.0

Field Summary
static int CONFLICT
          Deprecated. Indicates that a change conflict prevented the merge from successful completion (value 1)
static int INTERNAL_ERROR
          Deprecated. Status code describing an internal error (value 2)
static int OK
          Deprecated. Indicates the successful completion of the merge operation (value IStatus.OK)
 
Method Summary
  IStatus merge ( OutputStream output, String outputEncoding, InputStream ancestor, String ancestorEncoding, InputStream target, String targetEncoding, InputStream other, String otherEncoding, IProgressMonitor monitor)
          Deprecated. Performs a merge operation on the given input streams and writes the merge result to the output stream.
 

Field Detail

OK

static final int OK
Deprecated. 
Indicates the successful completion of the merge operation (value IStatus.OK)

See Also:
Constant Field Values

CONFLICT

static final int CONFLICT
Deprecated. 
Indicates that a change conflict prevented the merge from successful completion (value 1)

See Also:
Constant Field Values

INTERNAL_ERROR

static final int INTERNAL_ERROR
Deprecated. 
Status code describing an internal error (value 2)

See Also:
Constant Field Values
Method Detail

merge


IStatus merge(
OutputStream output,
              
String outputEncoding,
              
InputStream ancestor,
              
String ancestorEncoding,
              
InputStream target,
              
String targetEncoding,
              
InputStream other,
              
String otherEncoding,
              
IProgressMonitor monitor)
Deprecated. 
Performs a merge operation on the given input streams and writes the merge result to the output stream. On success a status IStatus.OK is returned, on error a status IStatus.ERROR. If the merge operation cannot deal with conflicts, the code of the error status has the value IStreamMerger.CONFLICT. For text oriented mergers the encoding for the input and output streams is honored. It is the responsibility of callers to close input and output streams.

Parameters:
output - the byte stream to which the merge result is written; the merger will not close the stream
outputEncoding - the encoding to use when writing to the output stream
ancestor - the byte stream from which the common ancestor is read
ancestorEncoding - the encoding of the ancestor input byte stream
target - the byte stream containing the target of the merge
targetEncoding - the encoding of the target input byte stream
other - the byte stream containing the target of the merge
otherEncoding - the encoding of the other input byte stream
monitor - reports progress of the merge operation
Returns:
returns the completion status of the operation

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