Java question

Tim Bray tbray at textuality.com
Mon Dec 15 01:18:09 GMT 1997


O Java gureaux, the recent discussions about compactness have started me
thinking.  I'm now debugging the validation code for Lark.  I've got it
in a separate package, textuality.validator; the validation code is
half-again as large as the basic WF code: 60+ K as opposed to 45K; it
has classes like 'DTD' and 'Attlist' and 'Validator' and so on.

I'd like for people who want to use Lark as just a WF checker to 
avoid the overhead of downloading 60K of validation rubbish.  Lark now
has a method called lark.validate(boolean) and if it's not turned on,
none of those textuality.validator classes will ever get invoked.
However, is an applet loader going to pull 'em all in over the 
network regardless?

I suppose if this is the case, I could create two different Lark
distributions, using the trick documented in the O'Reilly book
where I say 

private static final boolean sVALIDATE = false;

and then bracket all refs to validation classes with

if (sVALIDATE)
{

}

which won't get compiled.

Or, should I provide stubbed-out class files for the only two classes
that are directly referenced, DTD and Validator?

Or, is this worth worrying about?  Or is there a standard way to
achieve this effect?  Wisdom welcome. -Tim

xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev at ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo at ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo at ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa at ic.ac.uk)




More information about the Xml-dev mailing list