blob: 9e7fe81a62c595589827a8bb612cae4ed6f13ac0 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2010, 2011 E.D.Willink 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:
* E.D.Willink - initial API and implementation
*
* </copyright>
*
* $Id: EssentialOCLQualifiedNameProvider.java,v 1.2 2011/01/24 21:31:47 ewillink Exp $
*/
package org.eclipse.ocl.examples.xtext.essentialocl.services;
import org.eclipse.ocl.examples.pivot.NamedElement;
import org.eclipse.xtext.naming.DefaultDeclarativeQualifiedNameProvider;
public class EssentialOCLQualifiedNameProvider extends DefaultDeclarativeQualifiedNameProvider
{
protected String name(NamedElement namdElement) {
return namdElement.getName();
}
}