blob: f532b19f4cccb031f4993cc67ee3fd4474f04dcc [file] [log] [blame]
/**
* Copyright (c) 2013-2015 Angelo ZERR.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Angelo Zerr <angelo.zerr@gmail.com> - initial API and implementation
*/
package org.eclipse.wst.json.core.internal.text;
import org.eclipse.jface.text.IDocumentPartitioner;
import org.eclipse.wst.json.core.regions.JSONRegionContexts;
import org.eclipse.wst.json.core.text.IJSONPartitions;
import org.eclipse.wst.sse.core.internal.provisional.text.ITextRegion;
import org.eclipse.wst.sse.core.internal.text.rules.StructuredTextPartitioner;
import org.eclipse.wst.sse.core.text.IStructuredPartitions;
/**
* Structured text partitioner for JSON.
*
*/
public class StructuredTextPartitionerForJSON extends StructuredTextPartitioner {
public final static String[] legalTypes = new String[] {
IJSONPartitions.JSON, IJSONPartitions.COMMENT,
IStructuredPartitions.DEFAULT_PARTITION };
public StructuredTextPartitionerForJSON() {
super();
}
@Override
public String getPartitionType(ITextRegion region, int offset) {
String regionType = region.getType();
if (regionType == JSONRegionContexts.JSON_COMMENT) {
return IJSONPartitions.COMMENT;
}
return super.getPartitionType(region, offset);
}
@Override
public String getDefaultPartitionType() {
return IJSONPartitions.JSON;
}
@Override
public String[] getLegalContentTypes() {
return legalTypes;
}
@Override
public IDocumentPartitioner newInstance() {
return new StructuredTextPartitionerForJSON();
}
}