Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Class c = Class.forName("com.acme.MyClass");
Constructor[] ctors = c.getConstructors();
for (int i = 0l i < ctors.length; i++) {
// look for you desired constuctor
// and then call the relevant newInstance() method on the
// ctor object
}