blob: bfb47cb15de7963fae199988b19a1a60268e6021 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 IBM Corporation 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:
* IBM Corporation - initial API and implementation
* Jens Lukowski/Innoopract - initial renaming/restructuring
*
*******************************************************************************/
package org.eclipse.wst.xml.ui.internal.correction;
import org.eclipse.ui.texteditor.ITextEditor;
import org.eclipse.wst.sse.ui.internal.correction.IQuickAssistProcessor;
import org.eclipse.wst.sse.ui.internal.correction.IQuickFixProcessor;
import org.eclipse.wst.sse.ui.internal.correction.StructuredCorrectionProcessor;
public class CorrectionProcessorXML extends StructuredCorrectionProcessor {
protected IQuickAssistProcessor fQuickAssistProcessor;
protected IQuickFixProcessor fQuickFixProcessor;
public CorrectionProcessorXML(ITextEditor editor) {
super(editor);
}
protected IQuickAssistProcessor getQuickAssistProcessor() {
if (fQuickAssistProcessor == null)
fQuickAssistProcessor = new QuickAssistProcessorXML();
return fQuickAssistProcessor;
}
protected IQuickFixProcessor getQuickFixProcessor() {
if (fQuickFixProcessor == null)
fQuickFixProcessor = new QuickFixProcessorXML();
return fQuickFixProcessor;
}
}