org.openxma.dsl.dom.model.Mapper Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
import org.eclipse.emf.common.util.EList;
import org.openxma.dsl.core.model.ModelElement;
/**
*
* A representation of the model object 'Mapper'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.Mapper#getLeft Left}
* - {@link org.openxma.dsl.dom.model.Mapper#isBiDirectional Bi Directional}
* - {@link org.openxma.dsl.dom.model.Mapper#isToLeft To Left}
* - {@link org.openxma.dsl.dom.model.Mapper#isToRight To Right}
* - {@link org.openxma.dsl.dom.model.Mapper#getRight Right}
* - {@link org.openxma.dsl.dom.model.Mapper#getPropertyMappings Property Mappings}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getMapper()
* @model
* @generated
*/
public interface Mapper extends ModelElement {
/**
* Returns the value of the 'Left' reference.
*
*
* If the meaning of the 'Left' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Left' reference.
* @see #setLeft(ComplexType)
* @see org.openxma.dsl.dom.DomPackage#getMapper_Left()
* @model
* @generated
*/
ComplexType getLeft();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.Mapper#getLeft Left}' reference.
*
*
* @param value the new value of the 'Left' reference.
* @see #getLeft()
* @generated
*/
void setLeft(ComplexType value);
/**
* Returns the value of the 'Bi Directional' attribute.
*
*
* If the meaning of the 'Bi Directional' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Bi Directional' attribute.
* @see #setBiDirectional(boolean)
* @see org.openxma.dsl.dom.DomPackage#getMapper_BiDirectional()
* @model
* @generated
*/
boolean isBiDirectional();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.Mapper#isBiDirectional Bi Directional}' attribute.
*
*
* @param value the new value of the 'Bi Directional' attribute.
* @see #isBiDirectional()
* @generated
*/
void setBiDirectional(boolean value);
/**
* Returns the value of the 'To Left' attribute.
*
*
* If the meaning of the 'To Left' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'To Left' attribute.
* @see #setToLeft(boolean)
* @see org.openxma.dsl.dom.DomPackage#getMapper_ToLeft()
* @model
* @generated
*/
boolean isToLeft();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.Mapper#isToLeft To Left}' attribute.
*
*
* @param value the new value of the 'To Left' attribute.
* @see #isToLeft()
* @generated
*/
void setToLeft(boolean value);
/**
* Returns the value of the 'To Right' attribute.
*
*
* If the meaning of the 'To Right' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'To Right' attribute.
* @see #setToRight(boolean)
* @see org.openxma.dsl.dom.DomPackage#getMapper_ToRight()
* @model
* @generated
*/
boolean isToRight();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.Mapper#isToRight To Right}' attribute.
*
*
* @param value the new value of the 'To Right' attribute.
* @see #isToRight()
* @generated
*/
void setToRight(boolean value);
/**
* Returns the value of the 'Right' reference.
*
*
* If the meaning of the 'Right' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Right' reference.
* @see #setRight(ComplexType)
* @see org.openxma.dsl.dom.DomPackage#getMapper_Right()
* @model
* @generated
*/
ComplexType getRight();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.Mapper#getRight Right}' reference.
*
*
* @param value the new value of the 'Right' reference.
* @see #getRight()
* @generated
*/
void setRight(ComplexType value);
/**
* Returns the value of the 'Property Mappings' containment reference list.
* The list contents are of type {@link org.openxma.dsl.dom.model.PropertyMapping}.
*
*
* If the meaning of the 'Property Mappings' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Property Mappings' containment reference list.
* @see org.openxma.dsl.dom.DomPackage#getMapper_PropertyMappings()
* @model containment="true"
* @generated
*/
EList getPropertyMappings();
} // Mapper