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