Lines Matching refs:values
64 ValueMap values = new ValueMap();
73 values.setDataValue(process.getInput("InputString"), "ciao mondo!");
74 values.setValue(process.getInput("InputLanguage"), Italian);
75 values.setValue(process.getInput("OutputLanguage"), German);
78 System.out.println( "Precondition satisfied: " + process.getCondition().isTrue( values ) );
79 exec.execute(process, values);
96 values.setDataValue(process.getInput("InputString"), "ciao mondo!");
97 values.setValue(process.getInput("InputLanguage"), Italian);
98 values.setValue(process.getInput("OutputLanguage"), German);
101 System.out.println( "Precondition satisfied: " + process.getCondition().isTrue( values ) );
102 exec.execute(process, values);
114 values.setDataValue(process.getInput("InputString"), "ciao mondo!");
115 values.setValue(process.getInput("InputLanguage"), Italian);
116 values.setValue(process.getInput("OutputLanguage"), English);
119 System.out.println( "Precondition satisfied: " + process.getCondition().isTrue( values ) );
120 exec.execute(process, values);