I imagine I know what the answer is, but thought I'd ask. Let's say I have
class Foo<T> extends EvalFunc<T>
and I want the equivalent of
FuncSpec funcspec=new FuncSpec("org.path.to.Foo<Double>(info)");
Is this possible? Or am I going to have to make
DoubleFoo, FloatFoo, etc that set the generic type parameter?
Thanks for your help
