blob: 4b5cbd03a68b46ada95ce9ef37543f54b6c29d5c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004-2008 Akos Horvath, Gergely Varro and Daniel Varro
* 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:
* Akos Horvath, Gergely Varro - initial API and implementation
*******************************************************************************/
package org.eclipse.viatra2.gtasm.patternmatcher.impl.gtmatcher.internal.operation;
import org.eclipse.viatra2.core.IModelElement;
import org.eclipse.viatra2.core.IModelManager;
import org.eclipse.viatra2.gtasm.patternmatcher.impl.gtmatcher.exceptions.GTOperationException;
import org.eclipse.viatra2.gtasm.patternmatcher.impl.patternmatcher.internal.MatchingFrame;
/**
* @author Akos Horvath
*
*/
public abstract class CreateConstant2Constant extends CreateElement {
protected IModelElement source;
protected IModelElement target;
/**
* @param manager
* @param variableI
*/
public CreateConstant2Constant(IModelManager manager, int variableI) {
super(manager, variableI);
}
/**
* @param m
*/
public CreateConstant2Constant(IModelManager m) {
super(m);
}
@Override
protected boolean create(MatchingFrame frame) throws GTOperationException {
return false;
}
/**
* @return the source
*/
public IModelElement getSource() {
return source;
}
/**
* @return the target
*/
public IModelElement getTarget() {
return target;
}
/**
* @param source the source to set
*/
protected void setSource(IModelElement source) {
this.source = source;
}
/**
* @param target the target to set
*/
protected void setTarget(IModelElement target) {
this.target = target;
}
}