Michiel Meeuwissen wrote:
> I've another request.
>
> I think we need a nicer way to call 'functions' on a node.
>
> The way is now:
>
> node.getValue("some_function(some_argument)");
>
> Perhaps it would be nicer:
>
> node.getFunctionValue("some_function", "some_argument");
>
> Or perhaps more generic:
>
> Map args = new HashMap();
> arg.put("a", "b");
> node.getFunctionValue("some_function", args);
> I think I like this one best. Gerard
