Re: Call static java method specified at runtime

2012-02-29 Thread Aaron Cohen
On Tue, Feb 28, 2012 at 10:40 AM, Bost wrote: > I have a java class with several static methods: > > package org.domain.test; > > public class My { >  static public void sBar(String x, String y) > { System.out.println("sBar "+x+":"+y); } >  static public void sBaz(String x, String y) > { System.ou

Call static java method specified at runtime

2012-02-29 Thread Bost
I have a java class with several static methods: package org.domain.test; public class My { static public void sBar(String x, String y) { System.out.println("sBar "+x+":"+y); } static public void sBaz(String x, String y) { System.out.println("sBaz "+x+":"+y); } } I'd like to execute these me