blob: 51ecb2e9111415b8e00e97cd5cacd2b080369393 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Rushan R. Gilmullin and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Rushan R. Gilmullin - initial API and implementation
*******************************************************************************/
package e4modelextension.validation;
/**
* A sample validator interface for
* {@link e4modelextension.EditorPartDescriptor}. 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 EditorPartDescriptorValidator {
boolean validate();
boolean validateUriFilter(String value);
boolean validatePartAddingLogicUri(String value);
}