Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3ae89d44109791bd3edaaffe6e98536e3a37fa15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v10.html

Contributors:
    IBM Corporation - Initial implementation
**********************************************************************/

package org.eclipse.jface.text;

 
/**
 * Extension interface for <code>IDocumentPartitioningListener</code>. Extends the original
 * partitioning listener concept by telling the listener the minimal region that comprises all
 * partitioning changes.
 * 
 * @see org.eclipse.jface.text.IDocumentPartitionerExtension
 * @since 2.0
 */
public interface IDocumentPartitioningListenerExtension {
		
	/**
	 * The partitioning of the given document changed in the given region.
	 *
	 * @param document the document whose partitioning changed
	 * @param region the region in which the partitioning changed
	 * @see IDocument#addDocumentPartitioningListener
	 */
	void documentPartitioningChanged(IDocument document, IRegion region);
}

Back to the top