blob: 7bf113c41dd5652edd99a82ee26205f873363d89 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2007, 2020 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.ltk.model.core;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.jface.text.AbstractDocument;
import org.eclipse.jface.text.DocumentRewriteSessionType;
import org.eclipse.statet.ltk.model.core.elements.ISourceUnit;
/**
* Runnable to execute a document operation in a special context.
*
* @see ISourceUnit#syncExec(SourceDocumentRunnable)
*/
public abstract class SourceDocumentRunnable {
private AbstractDocument document;
private long stamp;
private final DocumentRewriteSessionType rewriteSessionType;
public SourceDocumentRunnable(final AbstractDocument document, final long assertedStamp, final DocumentRewriteSessionType rewriteSessionType) {
this.document= document;
this.stamp= assertedStamp;
this.rewriteSessionType= rewriteSessionType;
}
public final DocumentRewriteSessionType getRewriteSessionType() {
return this.rewriteSessionType;
}
public final void setNext(final AbstractDocument document, final long assertedStamp) {
this.document= document;
this.stamp= assertedStamp;
}
public final AbstractDocument getDocument() {
return this.document;
}
public final long getStampAssertion() {
return this.stamp;
}
public abstract void run() throws InvocationTargetException;
}