[jdom-interest] Toward beta 9

Philip Nelson panmanphil at yahoo.com
Wed Apr 9 22:55:45 PDT 2003


Has anybody tried this approach?

create a package protected or inner subclass of DefaultJDOMFactory in
SAXBuilder.  Then in the factory, for example...

    private class NoCheckText extends Text
    { 
       public void noCheck(String text) {
          value = text;
       }
    }
    public Text text(String text) {
        NoCheckText t = new NoCheckText();
        t.noCheck(text);
        return (Text) t;
    }




More information about the jdom-interest mailing list