/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.gmf.codegen.gmfgen; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>External Parser</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * Delegate to ParserService to find out * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.gmf.codegen.gmfgen.ExternalParser#getHint <em>Hint</em>}</li> * </ul> * </p> * * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getExternalParser() * @model * @generated */ public interface ExternalParser extends GenParserImplementation { /** * Returns the value of the '<em><b>Hint</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * Optionally, override hint value * <!-- end-model-doc --> * @return the value of the '<em>Hint</em>' attribute. * @see #setHint(String) * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getExternalParser_Hint() * @model * @generated */ String getHint(); /** * Sets the value of the '{@link org.eclipse.gmf.codegen.gmfgen.ExternalParser#getHint <em>Hint</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Hint</em>' attribute. * @see #getHint() * @generated */ void setHint(String value); } // ExternalParser