Jay,

The Inline Java methods follow the form of:

    public void tickSize(int tickerId, int field, int size)
    {
        try {
            perlobj.InvokeMethod("tickSize", new Object [] {
                    tickerId, field, size
            });
        }
        catch (InlineJavaPerlException pe){ }
        catch (InlineJavaException pe) { pe.printStackTrace() ;}
    }


You could do it the other way around: keep an ASCII file containing a
list of all the methods and parameter names. Parse it and use that
data to generate both your wrapper function AND the Java code. That
way everything is always in sync.

That should be doable since it looks like all your Java methods are
straight-forward wrappers.

Patrick




--
=====================
Patrick LeBoutillier
Laval, Québec, Canada

Reply via email to