View Javadoc
1 package org.smartcomps.twister.engine.priv.core.definition; 2 3 /*** 4 * The actual assignment, as part of an Assign activity which is just an 5 * assignment group. 6 * @see Assign 7 */ 8 public interface Assignment { 9 10 public static final int VARIABLE_PART = 1; 11 public static final int PARTNER_REFERENCE = 2; 12 public static final int VARIABLE_PROPERTY = 3; 13 public static final int EXPRESSION = 4; 14 public static final int LITERAL = 5; 15 16 public int getFromType(); 17 public void setFromType(int type); 18 19 public int getToType(); 20 public void setToType(int type); 21 22 public String getFromFirstValue(); 23 public void setFromFirstValue(String value); 24 25 public String getFromSecondValue(); 26 public void setFromSecondValue(String value); 27 28 public String getToFirstValue(); 29 public void setToFirstValue(String value); 30 31 public String getToSecondValue(); 32 public void setToSecondValue(String value); 33 34 public String getFromQuery(); 35 public void setFromQuery(String fromQuery); 36 37 public String getToQuery(); 38 public void setToQuery(String toQuery); 39 40 }

This page was automatically generated by Maven