All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.epsilon.emc.graphml.OrphanLink Maven / Gradle / Ivy

/*******************************************************************************
 * 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;
	}
	
	
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy