org.eclipse.ocl.expressions.impl.NullLiteralExpImpl Maven / Gradle / Ivy
/**
*
*
* Copyright (c) 2006, 2009 IBM Corporation, Zeligsoft Inc., 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:
* IBM - Initial API and implementation
* Zeligsoft - Bug 207365
*
*
*
* $Id: NullLiteralExpImpl.java,v 1.6 2009/01/23 17:16:03 cdamus Exp $
*/
package org.eclipse.ocl.expressions.impl;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.ocl.expressions.ExpressionsPackage;
import org.eclipse.ocl.expressions.NullLiteralExp;
import org.eclipse.ocl.utilities.Visitor;
/**
*
* An implementation of the model object 'Null Literal Exp'.
*
*
*
*
* @generated
*/
public class NullLiteralExpImpl
extends LiteralExpImpl
implements NullLiteralExp {
/**
*
*
* @generated
*/
protected NullLiteralExpImpl() {
super();
}
/**
*
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return ExpressionsPackage.Literals.NULL_LITERAL_EXP;
}
/**
* @generated NOT
*/
@Override
@SuppressWarnings("unchecked")
public > T accept(U v) {
return ((Visitor) v)
.visitNullLiteralExp(this);
}
} //NullLiteralExpImpl