blob: 95e023e0decb895783f06fadd5094ea5a7dda4b2 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2008, 2019 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.internal.r.core.sourcemodel;
import org.eclipse.statet.ltk.model.core.IModelElementDelta;
import org.eclipse.statet.ltk.model.core.impl.AbstractModelEventJob;
import org.eclipse.statet.r.core.model.IRModelInfo;
import org.eclipse.statet.r.core.model.IRSourceUnit;
/**
* R model update event job
*/
public class RModelEventJob extends AbstractModelEventJob<IRSourceUnit, IRModelInfo> {
RModelEventJob(final RModelManager manager) {
super(manager);
}
@Override
protected IModelElementDelta createDelta(final Task task) {
return new ModelDelta(task.getElement(), task.getOldInfo(), task.getNewInfo());
}
@Override
protected void dispose() {
super.dispose();
}
}