Eclipse Platform
2.0

org.eclipse.jface.text
Interface IDocumentPartitioner

All Known Implementing Classes:
DefaultPartitioner, RuleBasedPartitioner

public interface IDocumentPartitioner

A document partitioner divides a document into a set of disjoint text partitions. Each partition has a content type, an offset, and a length. The document partitioner is connected to one document and informed about all changes of this document before any of the document's document listeners. A document partitioner can thus incrementally update on the receipt of a document change event. Clients may implement this interface or use the standard implementation RuleBasedDocumentPartitioner.

See Also:
IDocument

Method Summary
 ITypedRegion[] computePartitioning(int offset, int length)
          Returns the partitioning of the given range of the connected document.
 void connect(IDocument document)
          Connects the partitioner to a document.
 void disconnect()
          Disconnects the partitioner from the document it is connected to.
 void documentAboutToBeChanged(DocumentEvent event)
          Informs about a forthcoming document change.
 boolean documentChanged(DocumentEvent event)
          The document has been changed.
 String getContentType(int offset)
          Returns the content type of the partition containing the given offset in the connected document.
 String[] getLegalContentTypes()
          Returns the set of all legal content types of this partitioner.
 ITypedRegion getPartition(int offset)
          Returns the partition containing the given offset of the connected document.
 

Method Detail

connect

public void connect(IDocument document)
Connects the partitioner to a document. Connect indicates the begin of the usage of the receiver as partitioner of the given document. Thus, resources the partitioner needs to be operational for this document should be allocated.

The caller of this method must ensure that this partitioner is also set as the document's document partitioner.

Parameters:
document - the document to be connected to

disconnect

public void disconnect()
Disconnects the partitioner from the document it is connected to. Disconnect indicates the end of the usage of the receiver as partitioner of the connected document. Thus, resources the partitioner needed to be operation for its connected document should be deallocated.

The caller of this method should also must ensure that this partitioner is no longer the document's partitioner.


documentAboutToBeChanged

public void documentAboutToBeChanged(DocumentEvent event)
Informs about a forthcoming document change. Will be called by the connected document and is not intended to be used by clients other than the connected document.

Parameters:
event - the event describing the forthcoming change

documentChanged

public boolean documentChanged(DocumentEvent event)
The document has been changed. The partitioner updates the document's partitioning and returns whether the structure of the document partitioning has been changed, i.e. whether partitions have been added or removed. Will be called by the connected document and is not intended to be used by clients other than the connected document.

Parameters:
event - the event describing the document change
Returns:
true if partitioning changed

getLegalContentTypes

public String[] getLegalContentTypes()
Returns the set of all legal content types of this partitioner. I.e. any result delivered by this partitioner may not contain a content type which would not be included in this method's result.

Returns:
the set of legal content types

getContentType

public String getContentType(int offset)
Returns the content type of the partition containing the given offset in the connected document. There must be a document connected to this partitioner.

Parameters:
offset - the offset in the connected document
Returns:
the content type of the offset's partition

computePartitioning

public ITypedRegion[] computePartitioning(int offset,
                                          int length)
Returns the partitioning of the given range of the connected document. There must be a document connected to this partitioner.

Parameters:
offset - the offset of the range of interest
length - the length of the range of interest
Returns:
the partitioning of the range

getPartition

public ITypedRegion getPartition(int offset)
Returns the partition containing the given offset of the connected document. There must be a document connected to this partitioner.

Parameters:
offset - the offset for which to determine the partition
Returns:
the partition containing the offset

Eclipse Platform
2.0

Copyright (c) IBM Corp. and others 2000, 2002. All Rights Reserved.