blob: 78a521929708a67f9e82f4c63d34e2924e1b8f75 [file] [log] [blame]
package org.eclipse.wst.xml.core.text;
import org.eclipse.wst.sse.core.text.IStructuredPartitions;
/**
* This interface is not intended to be implemented.
* It defines the partitioning for XML and all its partitions.
* Clients should reference the partition type Strings defined here directly.
*
* @since 1.0
*/
public interface IXMLPartitions {
String XML_PARTITIONING = IStructuredPartitions.STRUCTURED_PARTITIONING;
String XML_DEFAULT = "org.eclipse.wst.xml.XML_DEFAULT"; //$NON-NLS-1$
String XML_CDATA = "org.eclipse.wst.xml.XML_CDATA"; //$NON-NLS-1$
String XML_PI = "org.eclipse.wst.xml.XML_PI"; //$NON-NLS-1$
String XML_DECLARATION = "org.eclipse.wst.xml.XML_DECL"; //$NON-NLS-1$
String XML_COMMENT = "org.eclipse.wst.xml.XML_COMMENT"; //$NON-NLS-1$
/**
* Should match
* org.eclipse.wst.sse.core.dtd.partitioning.StructuredTextPartitionerForDTD.ST_DTD_SUBSET
*/
String DTD_SUBSET = "org.eclipse.wst.xml.dtd.internal_subset"; //$NON-NLS-1$
}