Skip to main content
summaryrefslogtreecommitdiffstats
blob: f7e940c2d4b0053b570ee44bc289107cf7a61700 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package org.eclipse.wst.sse.core.internal.provisional.text;

/**
 * Identifies the way that Documents are partitioned.
 * 
 * @plannedfor 1.0
 */
public interface IStructuredPartitioning {
	
	/** String to identify default partitioning*/
	String DEFAULT_STRUCTURED_PARTITIONING = "org.eclipse.wst.sse.core.default_structured_text_partitioning"; //$NON-NLS-1$
}

Back to the top