blob: 3524a30865a6801e72c0f9069852aec295d45a01 [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;
import org.eclipse.e4.ui.model.application.MApplication;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.osbp.vaaclipse.ui.preferences.model.PreferencesCategory;
import org.eclipse.osbp.vaaclipse.ui.preferences.model.PreferencesPage;
/**
* <!-- begin-user-doc --> A representation of the model object '
* <em><b>Vaaclipse Application</b></em>'. <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link e4modelextension.VaaclipseApplication#getEditorDescriptors <em>
* Editor Descriptors</em>}</li>
* <li>{@link e4modelextension.VaaclipseApplication#getPreferencesCategories
* <em>Preferences Categories</em>}</li>
* <li>{@link e4modelextension.VaaclipseApplication#getPreferencesPages <em>
* Preferences Pages</em>}</li>
* </ul>
* </p>
*
* @see e4modelextension.E4modelextensionPackage#getVaaclipseApplication()
* @model
* @generated
*/
public interface VaaclipseApplication extends EObject, MApplication {
/**
* Returns the value of the '<em><b>Editor Descriptors</b></em>' containment
* reference list. The list contents are of type
* {@link e4modelextension.EditorPartDescriptor}. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Editor Descriptors</em>' containment reference
* list isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Editor Descriptors</em>' containment
* reference list.
* @see e4modelextension.E4modelextensionPackage#getVaaclipseApplication_EditorDescriptors()
* @model containment="true"
* @generated
*/
EList<EditorPartDescriptor> getEditorDescriptors();
/**
* Returns the value of the '<em><b>Preferences Categories</b></em>'
* reference list. The list contents are of type
* {@link org.eclipse.osbp.vaaclipse.ui.preferences.model.PreferencesCategory}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Preferences Categories</em>' reference list
* isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Preferences Categories</em>' reference
* list.
* @see e4modelextension.E4modelextensionPackage#getVaaclipseApplication_PreferencesCategories()
* @model
* @generated
*/
EList<PreferencesCategory> getPreferencesCategories();
/**
* Returns the value of the '<em><b>Preferences Pages</b></em>' reference
* list. The list contents are of type
* {@link org.eclipse.osbp.vaaclipse.ui.preferences.model.PreferencesPage}. <!--
* begin-user-doc -->
* <p>
* If the meaning of the '<em>Preferences Pages</em>' reference list isn't
* clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Preferences Pages</em>' reference list.
* @see e4modelextension.E4modelextensionPackage#getVaaclipseApplication_PreferencesPages()
* @model
* @generated
*/
EList<PreferencesPage> getPreferencesPages();
} // VaaclipseApplication