Package jsl.modeling.elements.entity
Class Assignments
- java.lang.Object
-
- jsl.modeling.elements.entity.Assignments
-
public class Assignments extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Assignments()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddAssignment(java.lang.String attributeName, GetValueIfc rightSide)Adds an attribute assignment to the assign command Note: The attribute name should have been added to the entityvoidaddAssignment(SetValueIfc leftSide, GetValueIfc rightSide)Adds an assignment to the assign command
-
-
-
Method Detail
-
addAssignment
public void addAssignment(SetValueIfc leftSide, GetValueIfc rightSide)
Adds an assignment to the assign command- Parameters:
leftSide- , the thing being assigned torightSide- the thing being used to determine the assigned value
-
addAssignment
public void addAssignment(java.lang.String attributeName, GetValueIfc rightSide)Adds an attribute assignment to the assign command Note: The attribute name should have been added to the entity- Parameters:
attributeName- the name of the attribute to be assignedrightSide- the thing being used to determine the assigned value
-
-