blob: eec4cbd2f271f975b349d4e25db61ec14700e1bc [file] [log] [blame]
/**
* Copyright (c) 2008 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
*/
package org.eclipse.e4.ui.model.application;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Part Descriptor</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.e4.ui.model.application.MPartDescriptor#isAllowMultiple <em>Allow Multiple</em>}</li>
* <li>{@link org.eclipse.e4.ui.model.application.MPartDescriptor#getCategory <em>Category</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.e4.ui.model.application.MApplicationPackage#getPartDescriptor()
* @model
* @generated
*/
public interface MPartDescriptor extends MPart {
/**
* Returns the value of the '<em><b>Allow Multiple</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Allow Multiple</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Allow Multiple</em>' attribute.
* @see #setAllowMultiple(boolean)
* @see org.eclipse.e4.ui.model.application.MApplicationPackage#getPartDescriptor_AllowMultiple()
* @model
* @generated
*/
boolean isAllowMultiple();
/**
* Sets the value of the '{@link org.eclipse.e4.ui.model.application.MPartDescriptor#isAllowMultiple <em>Allow Multiple</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Allow Multiple</em>' attribute.
* @see #isAllowMultiple()
* @generated
*/
void setAllowMultiple(boolean value);
/**
* Returns the value of the '<em><b>Category</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Category</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Category</em>' attribute.
* @see #setCategory(String)
* @see org.eclipse.e4.ui.model.application.MApplicationPackage#getPartDescriptor_Category()
* @model
* @generated
*/
String getCategory();
/**
* Sets the value of the '{@link org.eclipse.e4.ui.model.application.MPartDescriptor#getCategory <em>Category</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Category</em>' attribute.
* @see #getCategory()
* @generated
*/
void setCategory(String value);
} // MPartDescriptor