blob: 34f6f6425f9426ac70cd220baaac11e09972b0df [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Zoltan Ujhelyi 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:
* Zoltan Ujhelyi - initial API and implementation
*******************************************************************************/
package org.eclipse.viatra2.visualisation.patterns;
/**
* @author Zoltan Ujhelyi
*
*/
public class LocationElement {
Object inputElement;
/**
* @return the inputElement
*/
public Object getInputElement() {
return inputElement;
}
/**
* @param inputElement the inputElement to set
*/
public void setInputElement(Object inputElement) {
this.inputElement = inputElement;
}
}