Re: Java question

Don Park (donpark@quake.net)
Sun, 14 Dec 1997 19:08:12 -0800


Oops! My code had some errors. Here is the correct version:

public class XmlParser {
public void validate () {
...
Class clazz = Class.forName("lark.SuperXmlValidator");
XmlValidator validator = (XmlValidator)clazz.newInstance();
validator.doThis(this);
validator.doThat(this);

Gosh, I really need my cape back ;-).

I hope you all are having nice Sunday dinners rather than sitting in front
of the computer like I am.

Don "Capeless JStud" Park