blob: 14a64687981f06159855b69c2c68275e4f135257 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Willink Transformations 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
*******************************************************************************/
/**
*
* $Id$
*/
package org.eclipse.qvtd.compiler.internal.qvtcconfig.validation;
import org.eclipse.emf.common.util.EList;
import org.eclipse.qvtd.compiler.internal.qvtcconfig.Direction;
import org.eclipse.qvtd.compiler.internal.qvtcconfig.Import;
/**
* A sample validator interface for {@link org.eclipse.qvtd.compiler.internal.qvtcconfig.Transformation}.
* This doesn't really do anything, and it's not a real EMF artifact.
* It was generated by the org.eclipse.emf.examples.generator.validator plug-in to illustrate how EMF's code generator can be extended.
* This can be disabled with -vmargs -Dorg.eclipse.emf.examples.generator.validator=false.
*/
public interface TransformationValidator {
boolean validate();
boolean validateDirection(EList<Direction> value);
boolean validateImport(EList<Import> value);
}