org.openxma.dsl.ddl.ddlDsl.Comment Maven / Gradle / Ivy
/**
*
*
*
*/
package org.openxma.dsl.ddl.ddlDsl;
/**
*
* A representation of the model object 'Comment'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.ddl.ddlDsl.Comment#getComment Comment}
*
*
*
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getComment()
* @model
* @generated
*/
public interface Comment extends DdlStatement
{
/**
* Returns the value of the 'Comment' attribute.
*
*
* If the meaning of the 'Comment' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Comment' attribute.
* @see #setComment(String)
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getComment_Comment()
* @model
* @generated
*/
String getComment();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.Comment#getComment Comment}' attribute.
*
*
* @param value the new value of the 'Comment' attribute.
* @see #getComment()
* @generated
*/
void setComment(String value);
} // Comment