/** * * * */ package org.wesnoth.wml; /** * * A representation of the model object 'WML Lua Code'. * * *

* The following features are supported: *

*

* * @see org.wesnoth.wml.WmlPackage#getWMLLuaCode() * @model * @generated */ public interface WMLLuaCode extends WMLKeyValue { /** * Returns the value of the 'Value' attribute. * The default value is "". * *

* If the meaning of the 'Value' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Value' attribute. * @see #setValue(String) * @see org.wesnoth.wml.WmlPackage#getWMLLuaCode_Value() * @model default="" * @generated */ String getValue(); /** * Sets the value of the '{@link org.wesnoth.wml.WMLLuaCode#getValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #getValue() * @generated */ void setValue(String value); } // WMLLuaCode