blob: 0ab4f5e5d303aad37e5633ee08c3dc1af7434050 [file] [log] [blame]
/**********************************************************************
Copyright (c) 2000, 2003 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.formatter;
/**
* Extension interface for <code>IContentFormatter</code>.
* Updates the content formatter to be aware of documents with multiple partitions.
*
* @since 3.0
*/
public interface IContentFormatterExtension {
/**
* Returns the partitioning this content formatter is using.
*
* @return the partitioning this content formatter is using
*/
String getDocumentPartitioning();
}