blob: d70ec8211c0412bd74bbe5c440115d3faeea801a [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2011, 2018 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.docmlet.tex.core.model;
import java.util.List;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.statet.docmlet.tex.core.ast.Embedded;
import org.eclipse.statet.ltk.core.SourceContent;
import org.eclipse.statet.ltk.issues.core.ProblemRequestor;
public interface ILtxSuModelContainerEmbeddedExtension {
String getNowebType();
void reconcileEmbeddedAst(SourceContent content, List<Embedded> list,
int level, IProgressMonitor monitor);
void reconcileEmbeddedModel(SourceContent content, ILtxModelInfo texModel,
List<EmbeddingReconcileItem> list,
int level, IProgressMonitor monitor);
void reportEmbeddedProblems(SourceContent content, ILtxModelInfo texModel,
ProblemRequestor problemRequestor,
int level, IProgressMonitor monitor);
}