org.openxma.dsl.dom.model.Property Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
import org.openxma.dsl.core.model.IDocumentable;
import org.openxma.dsl.core.model.ReferenceableByXmadslVariable;
import org.openxma.dsl.core.model.SimpleType;
/**
*
* A representation of the model object 'Property'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.Property#getType Type}
* - {@link org.openxma.dsl.dom.model.Property#getName Name}
* - {@link org.openxma.dsl.dom.model.Property#getDefaultValue Default Value}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getProperty()
* @model
* @generated
*/
public interface Property extends ReferenceableByXmadslVariable, IDocumentable {
/**
* Returns the value of the 'Type' reference.
*
*
* If the meaning of the 'Type' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Type' reference.
* @see #setType(SimpleType)
* @see org.openxma.dsl.dom.DomPackage#getProperty_Type()
* @model
* @generated
*/
SimpleType getType();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.Property#getType Type}' reference.
*
*
* @param value the new value of the 'Type' reference.
* @see #getType()
* @generated
*/
void setType(SimpleType 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)
* @see org.openxma.dsl.dom.DomPackage#getProperty_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.Property#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the 'Default Value' attribute.
*
*
* If the meaning of the 'Default Value' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Default Value' attribute.
* @see #setDefaultValue(String)
* @see org.openxma.dsl.dom.DomPackage#getProperty_DefaultValue()
* @model
* @generated
*/
String getDefaultValue();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.Property#getDefaultValue Default Value}' attribute.
*
*
* @param value the new value of the 'Default Value' attribute.
* @see #getDefaultValue()
* @generated
*/
void setDefaultValue(String value);
} // Property