blob: f255d517365f8fde874668c53f5bbff1c34d0f16 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2012 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.acceleo.model.mtl.impl.spec;
import org.eclipse.acceleo.model.mtl.InitSection;
import org.eclipse.acceleo.model.mtl.impl.LetBlockImpl;
import org.eclipse.ocl.ecore.Variable;
import org.eclipse.ocl.parser.ValidationVisitor;
import org.eclipse.ocl.util.ToStringVisitor;
/**
* Specializes the LetBlock implementation.
*
* @author <a href="mailto:laurent.goubet@obeo.fr">Laurent Goubet</a>
*/
public class LetBlockSpec extends LetBlockImpl {
/**
* {@inheritDoc}
*
* @see org.eclipse.ocl.ecore.impl.OCLExpressionImpl#accept(org.eclipse.ocl.utilities.Visitor)
*/
@SuppressWarnings("unchecked")
@Override
public <T extends Object, U extends org.eclipse.ocl.utilities.Visitor<T, ?, ?, ?, ?, ?, ?, ?, ?, ?>> T accept(
U v) {
T result;
if (v instanceof ToStringVisitor<?, ?, ?, ?, ?, ?, ?, ?, ?>) {
result = (T)toString();
} else if (v instanceof ValidationVisitor<?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?>) {
result = (T)Boolean.TRUE;
} else {
result = super.accept(v);
}
return result;
}
/**
* {@inheritDoc}
*
* @see org.eclipse.ocl.ecore.impl.OCLExpressionImpl#toString()
*/
@Override
public String toString() {
final Variable variable = getLetVariable();
final InitSection initSection = getInit();
final StringBuilder toString = new StringBuilder("let"); //$NON-NLS-1$
toString.append(' ');
toString.append(variable.toString());
if (initSection != null) {
toString.append(' ');
toString.append(initSection.toString());
}
return toString.toString();
}
}