blob: cf7450838eea6a81143bd029890311d87777db9f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 The University of York.
* 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/
*
* Contributors:
* Dimitris Kolovos - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.emc.graphml;
import org.eclipse.epsilon.emc.muddle.MuddleElement;
public class OrphanLink {
protected MuddleElement source;
protected MuddleElement target;
public MuddleElement getSource() {
return source;
}
public void setSource(MuddleElement source) {
this.source = source;
}
public MuddleElement getTarget() {
return target;
}
public void setTarget(MuddleElement target) {
this.target = target;
}
public OrphanLink(MuddleElement source, MuddleElement target) {
super();
this.source = source;
this.target = target;
}
}