/**
* Get the variables from outside (parameters, globals ...)
- * @return the variables from outside
*/
- public List getOutsideVariable() {
- return new ArrayList();
+ public void getOutsideVariable(final List list) {
}
/**
* get the modified variables.
- * @return the variables from we change value
*/
- public List getModifiedVariable() {
- return expression.getModifiedVariable();
+ public void getModifiedVariable(final List list) {
+ expression.getModifiedVariable(list);
}
/**
* Get the variables used.
- * @return the variables used
*/
- public List getUsedVariable() {
- return expression.getUsedVariable();
+ public void getUsedVariable(final List list) {
+ expression.getUsedVariable(list);
}
}