blob: 9a57560918cf45977a2ed70d8d27f545f2afe011 [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.IModelManager;
/**
* @author Akos Horvath
*
*/
public abstract class CreateBound2Bound extends CreateElement {
protected int target,source;
/**
* @param manager
* @param variableI
*/
public CreateBound2Bound(IModelManager manager, int variableI) {
super(manager, variableI);
}
/**
* @param m
*/
public CreateBound2Bound(IModelManager m) {
super(m);
}
/**
* @return the source
*/
public int getSource() {
return source;
}
/**
* @return the target
*/
public int getTarget() {
return target;
}
/**
* @param source the source to set
*/
protected void setSource(int source) {
this.source = source;
}
/**
* @param target the target to set
*/
protected void setTarget(int target) {
this.target = target;
}
}