Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 3b8a4fa864db4ca896dd7d314bb9278852d6cda9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.eclipse.wst.css.core.internal.provisional.text;

import org.eclipse.wst.sse.core.internal.provisional.text.IStructuredPartitionTypes;

/**
 * This interface is not intended to be implemented. It defines the
 * partitioning for CSS and all its partitions. Clients should reference the
 * partition type Strings defined here directly.
 * 
 * @plannedfor 1.0
 */
public interface ICSSPartitionTypes extends IStructuredPartitionTypes {

	String STYLE = "org.eclipse.wst.css.STYLE"; //$NON-NLS-1$
}

Back to the top