blob: 3eb5ad3139f7df3995c26c96096cd999f2549d09 [file] [log] [blame]
package org.eclipse.stem.internal.data.generatedplugin.validation;
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation 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 Corporation - initial API and implementation
*******************************************************************************/
/**
* A sample validator interface for
* {@link org.eclipse.stem.internal.data.generatedplugin.StemCategory}. 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 StemCategoryValidator {
boolean validate();
boolean validateId(String value);
boolean validateName(String value);
boolean validateParentId(String value);
}