blob: 482f8fcae794514f175cfaf90539c86f388d2c5f [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2008 The University of York.
* 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:
* Louis Rose - initial API and implementation
* ******************************************************************************
*
* $Id: DefaultValueRule.java,v 1.2 2008/07/30 11:13:13 dkolovos Exp $
*/
package org.eclipse.epsilon.hutn.model.config.hutnConfig;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Default Value Rule</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epsilon.hutn.model.config.hutnConfig.DefaultValueRule#getDefaultValue <em>Default Value</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epsilon.hutn.model.config.hutnConfig.HutnConfigPackage#getDefaultValueRule()
* @model
* @generated
*/
public interface DefaultValueRule extends Rule {
/**
* Returns the value of the '<em><b>Default Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Default Value</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Default Value</em>' attribute.
* @see #setDefaultValue(String)
* @see org.eclipse.epsilon.hutn.model.config.hutnConfig.HutnConfigPackage#getDefaultValueRule_DefaultValue()
* @model
* @generated
*/
String getDefaultValue();
/**
* Sets the value of the '{@link org.eclipse.epsilon.hutn.model.config.hutnConfig.DefaultValueRule#getDefaultValue <em>Default Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Default Value</em>' attribute.
* @see #getDefaultValue()
* @generated
*/
void setDefaultValue(String value);
} // DefaultValueRule