Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a85e77b36aec788ce60c06d5a058a34c3950e7ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*******************************************************************************
 * Copyright (c) 2017 Red Hat Inc. and others
 * 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:
 *     Sopot Cela (Red Hat Inc.)
 *******************************************************************************/
package org.eclipse.team.internal.genericeditor.diff.extension.partitioner;

import org.eclipse.jface.text.IDocument;

public interface IDiffPartitioning {
	public static final String PARTITION_BODY = "__PARTITION_BODY"; //$NON-NLS-1$
	public static final String PARTITION_HEADER = "__PARTITION_HEADER"; //$NON-NLS-1$
	public static final String[] LEGAL_PARTITION_TYPES = new String[] {PARTITION_HEADER,PARTITION_BODY, IDocument.DEFAULT_CONTENT_TYPE };
}

Back to the top