blob: a958faae5212df3b3ec8d3bc35a65988578ed8fb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 RCP Vision (http://www.rcp-vision.com) and others.
* 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:
* Lorenzo Bettini - initial API and implementation
*******************************************************************************/
package org.eclipse.emf.parsley.dsl.util
import org.eclipse.emf.ecore.EObject
import org.eclipse.emf.parsley.dsl.model.EmfFeatureAccess
import static extension org.eclipse.xtext.EcoreUtil2.*
class EmfParsleyDslModelUtil {
def static containingEmfFeatureAccess(EObject o) {
o.getContainerOfType(typeof(EmfFeatureAccess))
}
}