Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 60bc05ea88d27e70d35c530da1f10e5cd7558251 (plain) (tree)
1
2
3
4
5
6
7
8
9





                
                                                
 
                                                                                 
 







                                                                       
                                                                                                             


         
                                                                               













                                                                                
                                                                                                   





                                                           
                                                                                                                                             







                                                                                
                
/**
 * <copyright>
 * </copyright>
 *
 * $Id$
 */
package org.eclipse.papyrus.infra.emf.newchild;

import org.eclipse.papyrus.infra.extendedtypes.ExtendedElementTypeConfiguration;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Menu Action</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * <ul>
 *   <li>{@link org.eclipse.papyrus.infra.emf.newchild.MenuAction#getElementType <em>Element Type</em>}</li>
 * </ul>
 * </p>
 *
 * @see org.eclipse.papyrus.infra.emf.newchild.NewchildPackage#getMenuAction()
 * @model
 * @generated
 */
public interface MenuAction extends MenuItem {
	/**
	 * Returns the value of the '<em><b>Element Type</b></em>' reference.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Element Type</em>' reference isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Element Type</em>' reference.
	 * @see #setElementType(ExtendedElementTypeConfiguration)
	 * @see org.eclipse.papyrus.infra.emf.newchild.NewchildPackage#getMenuAction_ElementType()
	 * @model required="true"
	 * @generated
	 */
	ExtendedElementTypeConfiguration getElementType();

	/**
	 * Sets the value of the '{@link org.eclipse.papyrus.infra.emf.newchild.MenuAction#getElementType <em>Element Type</em>}' reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Element Type</em>' reference.
	 * @see #getElementType()
	 * @generated
	 */
	void setElementType(ExtendedElementTypeConfiguration value);

} // MenuAction

Back to the top