/** * * * * $Id$ */ package org.apache.tuscany.das.rdb.config; /** * * A representation of the model object 'Parameter'. * * *

* The following features are supported: *

*

* * @generated */ public interface Parameter { /** * Returns the value of the 'Column Type' attribute. * *

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

* * @return the value of the 'Column Type' attribute. * @see #setColumnType(String) * @generated */ String getColumnType(); /** * Sets the value of the '{@link org.apache.tuscany.das.rdb.config.Parameter#getColumnType Column Type}' attribute. * * * @param value the new value of the 'Column Type' attribute. * @see #getColumnType() * @generated */ void setColumnType(String value); /** * Returns the value of the 'Command' attribute. * *

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

* * @return the value of the 'Command' attribute. * @see #setCommand(String) * @generated */ String getCommand(); /** * Sets the value of the '{@link org.apache.tuscany.das.rdb.config.Parameter#getCommand Command}' attribute. * * * @param value the new value of the 'Command' attribute. * @see #getCommand() * @generated */ void setCommand(String value); /** * Returns the value of the 'Name' attribute. * *

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

* * @return the value of the 'Name' attribute. * @see #setName(String) * @generated */ String getName(); /** * Sets the value of the '{@link org.apache.tuscany.das.rdb.config.Parameter#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); } // Parameter