/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.gmf.codegen.gmfgen; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Custom Behaviour</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * Custom user behaviour * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.gmf.codegen.gmfgen.CustomBehaviour#getKey <em>Key</em>}</li> * <li>{@link org.eclipse.gmf.codegen.gmfgen.CustomBehaviour#getEditPolicyQualifiedClassName <em>Edit Policy Qualified Class Name</em>}</li> * </ul> * </p> * * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getCustomBehaviour() * @model * @generated */ public interface CustomBehaviour extends Behaviour { /** * Returns the value of the '<em><b>Key</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * Key used to register edit policy in host edit part * <!-- end-model-doc --> * @return the value of the '<em>Key</em>' attribute. * @see #setKey(String) * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getCustomBehaviour_Key() * @model required="true" * @generated */ String getKey(); /** * Sets the value of the '{@link org.eclipse.gmf.codegen.gmfgen.CustomBehaviour#getKey <em>Key</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Key</em>' attribute. * @see #getKey() * @generated */ void setKey(String value); /** * Returns the value of the '<em><b>Edit Policy Qualified Class Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Edit Policy Qualified Class Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Edit Policy Qualified Class Name</em>' attribute. * @see #setEditPolicyQualifiedClassName(String) * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getCustomBehaviour_EditPolicyQualifiedClassName() * @model required="true" * @generated */ String getEditPolicyQualifiedClassName(); /** * Sets the value of the '{@link org.eclipse.gmf.codegen.gmfgen.CustomBehaviour#getEditPolicyQualifiedClassName <em>Edit Policy Qualified Class Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Edit Policy Qualified Class Name</em>' attribute. * @see #getEditPolicyQualifiedClassName() * @generated */ void setEditPolicyQualifiedClassName(String value); } // CustomBehaviour