Package org.eclipse.compare
Class HistoryItem
java.lang.Object
org.eclipse.compare.HistoryItem
- All Implemented Interfaces:
- IEncodedStreamContentAccessor,- IModificationDate,- IResourceProvider,- IStreamContentAccessor,- ITypedElement
public class HistoryItem
extends Object
implements IEncodedStreamContentAccessor, ITypedElement, IModificationDate, IResourceProvider
A combination 
IFileState and ITypedElement that can be used as
 an input to a compare viewer or other places where an IStreamContentAccessor
 is needed.
 Clients may instantiate this class; it is not intended to be subclassed.
- Restriction:
- This class is not intended to be subclassed by clients.
- 
Field SummaryFields inherited from interface org.eclipse.compare.ITypedElementFOLDER_TYPE, TEXT_TYPE, UNKNOWN_TYPE
- 
Constructor SummaryConstructorsConstructorDescriptionHistoryItem(ITypedElement base, IFileState fileState) Creates aHistoryItemobject which combines the givenIFileStateandITypedElementinto an object which is suitable as input for a compare viewer orReplaceWithEditionDialog.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the name of a charset encoding to be used when decoding this stream accessor's contents into characters.Returns an openInputStreamfor this object which can be used to retrieve the object's content.getImage()Returns an image for this object.longReturns the modification time of this object.getName()Returns the name of this object.Returns the corresponding resource for this object ornull.getType()Returns the type of this object.
- 
Constructor Details- 
HistoryItemCreates aHistoryItemobject which combines the givenIFileStateandITypedElementinto an object which is suitable as input for a compare viewer orReplaceWithEditionDialog.- Parameters:
- base- the implementation of the- ITypedElementinterface delegates to this base- ITypedElement
- fileState- the- IFileStatefrom which the streamable contents and the modification time is derived from
 
 
- 
- 
Method Details- 
getNameDescription copied from interface:ITypedElementReturns the name of this object. The name is used when displaying this object in the UI.- Specified by:
- getNamein interface- ITypedElement
- Returns:
- the name of this object
 
- 
getImageDescription copied from interface:ITypedElementReturns an image for this object. This image is used when displaying this object in the UI.- Specified by:
- getImagein interface- ITypedElement
- Returns:
- the image of this object or nullif this type of input has no image
 
- 
getTypeDescription copied from interface:ITypedElementReturns the type of this object. For objects with a file name this is typically the file extension. For folders its the constantFOLDER_TYPE. The type is used for determining a suitable viewer for this object.- Specified by:
- getTypein interface- ITypedElement
- Returns:
- the type of this object
 
- 
getModificationDatepublic long getModificationDate()Description copied from interface:IModificationDateReturns the modification time of this object.Note that this value should only be used to give the user a general idea of how old the object is. - Specified by:
- getModificationDatein interface- IModificationDate
- Returns:
- the time of last modification, in milliseconds since January 1, 1970, 00:00:00 GMT
 
- 
getContentsDescription copied from interface:IStreamContentAccessorReturns an openInputStreamfor this object which can be used to retrieve the object's content. The client is responsible for closing the stream when finished. Returnsnullif this object has no streamable contents.- Specified by:
- getContentsin interface- IStreamContentAccessor
- Returns:
- an input stream containing the contents of this object
- Throws:
- CoreException- if the contents of this object could not be accessed
 
- 
getCharsetDescription copied from interface:IEncodedStreamContentAccessorReturns the name of a charset encoding to be used when decoding this stream accessor's contents into characters. Returnsnullif a proper encoding cannot be determined.Note: this method does not check whether the result is a supported charset name. Callers should be prepared to handle UnsupportedEncodingExceptionwhere this charset is used.- Specified by:
- getCharsetin interface- IEncodedStreamContentAccessor
- Returns:
- the name of a charset, or null
- Throws:
- CoreException- if an error happens while determining the charset. See any refinements for more information.
- See Also:
 
- 
getResourceDescription copied from interface:IResourceProviderReturns the corresponding resource for this object ornull.- Specified by:
- getResourcein interface- IResourceProvider
- Returns:
- the corresponding resource or null
 
 
-