Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 342e96c4491ac08caefd14f845fe78bb2fb4445a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 *  Copyright (c) 2013-2014 Angelo ZERR.
 *  All rights reserved. This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License v1.0
 *  which accompanies this distribution, and is available at
 *  http://www.eclipse.org/legal/epl-v10.html
 *
 *  Contributors:
 *  Angelo Zerr <angelo.zerr@gmail.com> - initial API and implementation
 */
package org.eclipse.wst.json.core.text;

/**
 * This interface is not intended to be implemented. It defines the partitioning
 * for JSON and all its partitions. Clients should reference the partition type
 * Strings defined here directly.
 */
public interface IJSONPartitions {

	String JSON = "org.eclipse.wst.json.JSON"; //$NON-NLS-1$
	String COMMENT = "org.eclipse.wst.json.COMMENT"; //$NON-NLS-1$
}

Back to the top