org.openxma.dsl.dom.model.FromClass Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
/**
*
* A representation of the model object 'From Class'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.FromClass#getEntity Entity}
* - {@link org.openxma.dsl.dom.model.FromClass#isPopertyFetch Poperty Fetch}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getFromClass()
* @model
* @generated
*/
public interface FromClass extends FromRange, JoinEntity {
/**
* 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(Entity)
* @see org.openxma.dsl.dom.DomPackage#getFromClass_Entity()
* @model
* @generated
*/
Entity getEntity();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.FromClass#getEntity Entity}' reference.
*
*
* @param value the new value of the 'Entity' reference.
* @see #getEntity()
* @generated
*/
void setEntity(Entity value);
/**
* Returns the value of the 'Poperty Fetch' attribute.
*
*
* If the meaning of the 'Poperty Fetch' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Poperty Fetch' attribute.
* @see #setPopertyFetch(boolean)
* @see org.openxma.dsl.dom.DomPackage#getFromClass_PopertyFetch()
* @model
* @generated
*/
boolean isPopertyFetch();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.FromClass#isPopertyFetch Poperty Fetch}' attribute.
*
*
* @param value the new value of the 'Poperty Fetch' attribute.
* @see #isPopertyFetch()
* @generated
*/
void setPopertyFetch(boolean value);
} // FromClass