/** * <copyright> * </copyright> * * $Id: ValidatorConfig.java,v 1.2 2009/04/25 04:29:42 apanchenk Exp $ */ package org.eclipse.dltk.validators.configs; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Validator Config</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.dltk.validators.configs.ValidatorConfig#getName <em>Name</em>}</li> * <li>{@link org.eclipse.dltk.validators.configs.ValidatorConfig#isReadOnly <em>Read Only</em>}</li> * <li>{@link org.eclipse.dltk.validators.configs.ValidatorConfig#getCommandLineOptions <em>Command Line Options</em>}</li> * <li>{@link org.eclipse.dltk.validators.configs.ValidatorConfig#getPriority <em>Priority</em>}</li> * </ul> * </p> * * @see org.eclipse.dltk.validators.configs.ValidatorsPackage#getValidatorConfig() * @model abstract="true" * @generated */ public interface ValidatorConfig extends EObject { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>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>Name</em>' attribute. * @see #setName(String) * @see org.eclipse.dltk.validators.configs.ValidatorsPackage#getValidatorConfig_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.dltk.validators.configs.ValidatorConfig#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Read Only</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Read Only</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Read Only</em>' attribute. * @see org.eclipse.dltk.validators.configs.ValidatorsPackage#getValidatorConfig_ReadOnly() * @model transient="true" changeable="false" volatile="true" derived="true" * @generated */ boolean isReadOnly(); /** * Returns the value of the '<em><b>Command Line Options</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Command Line Options</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Command Line Options</em>' attribute. * @see #setCommandLineOptions(String) * @see org.eclipse.dltk.validators.configs.ValidatorsPackage#getValidatorConfig_CommandLineOptions() * @model * @generated */ String getCommandLineOptions(); /** * Sets the value of the '{@link org.eclipse.dltk.validators.configs.ValidatorConfig#getCommandLineOptions <em>Command Line Options</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Command Line Options</em>' attribute. * @see #getCommandLineOptions() * @generated */ void setCommandLineOptions(String value); /** * Returns the value of the '<em><b>Priority</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Priority</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Priority</em>' attribute. * @see #setPriority(int) * @see org.eclipse.dltk.validators.configs.ValidatorsPackage#getValidatorConfig_Priority() * @model * @generated */ int getPriority(); /** * Sets the value of the '{@link org.eclipse.dltk.validators.configs.ValidatorConfig#getPriority <em>Priority</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Priority</em>' attribute. * @see #getPriority() * @generated */ void setPriority(int value); } // ValidatorConfig