blob: 052df0a46bc503b038a336d5154280d73aac9186 [file] [log] [blame]
david_williamscfdb2cd2004-11-11 08:37:49 +00001/*******************************************************************************
2 * Copyright (c) 2001, 2004 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 * Jens Lukowski/Innoopract - initial renaming/restructuring
11 *
12 *******************************************************************************/
13package org.eclipse.wst.sse.ui.internal.reconcile;
14
15import org.eclipse.jface.text.reconciler.IReconcileStep;
16
17/**
18 * Defines an annotation key that the
19 * <code>AbstractStructuredTextReconcilingStrategy</code> knows how to
20 * remove appropriately.
21 *
pavery55ae4472005-02-16 23:00:16 +000022 * @deprecated not API, this will probably just become an abstract class
23 *
david_williamscfdb2cd2004-11-11 08:37:49 +000024 * @author pavery
25 */
26public interface IReconcileAnnotationKey {
27 static final int PARTIAL = 1;
28 static final int TOTAL = 0;
29
30 String getPartitionType();
31
pavery55ae4472005-02-16 23:00:16 +000032 //int getScope();
david_williamscfdb2cd2004-11-11 08:37:49 +000033
34 IReconcileStep getStep();
35}