if (target == null) { throw new NullPointerException("Target VariableMapper cannot be null"); } this.target = target;
return this.momento;
ValueExpression expr = this.target.resolveVariable(variable); if (expr != null) { if (this.momento == null) { this.momento = new VariableMapperImpl(); } this.momento.setVariable(variable, expr); } return expr;
throw new UnsupportedOperationException("Cannot Set Variables on Factory");