| /******************************************************************************* |
| * 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; |
| |
| import e4modelextension.EditorPartDescriptor; |
| |
| import org.eclipse.emf.common.util.EList; |
| |
| import org.eclipse.osbp.vaaclipse.ui.preferences.model.PreferencesCategory; |
| import org.eclipse.osbp.vaaclipse.ui.preferences.model.PreferencesPage; |
| |
| /** |
| * A sample validator interface for |
| * {@link e4modelextension.VaaclipseApplication}. 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 VaaclipseApplicationValidator { |
| boolean validate(); |
| |
| boolean validateEditorDescriptors(EList<EditorPartDescriptor> value); |
| |
| boolean validatePreferencesCategories(EList<PreferencesCategory> value); |
| |
| boolean validatePreferencesPages(EList<PreferencesPage> value); |
| } |