blob: eeb969602f8909f0367c9d260cfae1c94e45ea66 [file] [log] [blame]
package org.eclipse.stem.internal.data.generatedplugin.validation;
/*******************************************************************************
* Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018
* IBM Corporation, BfR, and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
import org.eclipse.emf.common.util.EList;
import org.eclipse.stem.internal.data.generatedplugin.Extension;
/**
* A sample validator interface for
* {@link org.eclipse.stem.internal.data.generatedplugin.Plugin}. 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.
*/
@SuppressWarnings("all")
public interface PluginValidator {
boolean validate();
boolean validateExtensionelement(EList<Extension> value);
}