blob: fd4759c2a95771b50765aaf09b76459ec78c1a14 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Obeo.
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.emf.ecoretools.design.tests;
import org.eclipse.emf.ecore.EAttribute;
import org.eclipse.emf.ecore.EObject;
public class InterpretedExpression {
private String expression;
private EObject declaration;
private EAttribute feature;
public InterpretedExpression(String expression, EObject declaration, EAttribute feature) {
super();
this.expression = expression;
this.declaration = declaration;
this.feature = feature;
}
public String getExpression() {
return expression;
}
public EObject getDeclaration() {
return declaration;
}
public EAttribute getFeature() {
return feature;
}
}