org.openxma.dsl.dom.model.Join Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
/**
*
* A representation of the model object 'Join'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.Join#getType Type}
* - {@link org.openxma.dsl.dom.model.Join#isFetch Fetch}
* - {@link org.openxma.dsl.dom.model.Join#getEntity Entity}
* - {@link org.openxma.dsl.dom.model.Join#getReference Reference}
* - {@link org.openxma.dsl.dom.model.Join#isPropertyFetch Property Fetch}
* - {@link org.openxma.dsl.dom.model.Join#getExpression Expression}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getJoin()
* @model
* @generated
*/
public interface Join extends JoinEntity {
/**
* Returns the value of the 'Type' attribute.
*
*
* If the meaning of the 'Type' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Type' attribute.
* @see #setType(String)
* @see org.openxma.dsl.dom.DomPackage#getJoin_Type()
* @model
* @generated
*/
String getType();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.Join#getType Type}' attribute.
*
*
* @param value the new value of the 'Type' attribute.
* @see #getType()
* @generated
*/
void setType(String value);
/**
* Returns the value of the 'Fetch' attribute.
*
*
* If the meaning of the 'Fetch' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Fetch' attribute.
* @see #setFetch(boolean)
* @see org.openxma.dsl.dom.DomPackage#getJoin_Fetch()
* @model
* @generated
*/
boolean isFetch();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.Join#isFetch Fetch}' attribute.
*
*
* @param value the new value of the 'Fetch' attribute.
* @see #isFetch()
* @generated
*/
void setFetch(boolean value);
/**
* Returns the value of the 'Entity' reference.
*
*
* If the meaning of the 'Entity' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Entity' reference.
* @see #setEntity(JoinEntity)
* @see org.openxma.dsl.dom.DomPackage#getJoin_Entity()
* @model
* @generated
*/
JoinEntity getEntity();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.Join#getEntity Entity}' reference.
*
*
* @param value the new value of the 'Entity' reference.
* @see #getEntity()
* @generated
*/
void setEntity(JoinEntity value);
/**
* Returns the value of the 'Reference' reference.
*
*
* If the meaning of the 'Reference' reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Reference' reference.
* @see #setReference(Attribute)
* @see org.openxma.dsl.dom.DomPackage#getJoin_Reference()
* @model
* @generated
*/
Attribute getReference();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.Join#getReference Reference}' reference.
*
*
* @param value the new value of the 'Reference' reference.
* @see #getReference()
* @generated
*/
void setReference(Attribute value);
/**
* Returns the value of the 'Property Fetch' attribute.
*
*
* If the meaning of the 'Property Fetch' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Property Fetch' attribute.
* @see #setPropertyFetch(boolean)
* @see org.openxma.dsl.dom.DomPackage#getJoin_PropertyFetch()
* @model
* @generated
*/
boolean isPropertyFetch();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.Join#isPropertyFetch Property Fetch}' attribute.
*
*
* @param value the new value of the 'Property Fetch' attribute.
* @see #isPropertyFetch()
* @generated
*/
void setPropertyFetch(boolean value);
/**
* Returns the value of the 'Expression' containment reference.
*
*
* If the meaning of the 'Expression' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Expression' containment reference.
* @see #setExpression(Expression)
* @see org.openxma.dsl.dom.DomPackage#getJoin_Expression()
* @model containment="true"
* @generated
*/
Expression getExpression();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.Join#getExpression Expression}' containment reference.
*
*
* @param value the new value of the 'Expression' containment reference.
* @see #getExpression()
* @generated
*/
void setExpression(Expression value);
} // Join