Is there any way to tell digester to read in the entire content of an
element (including text and sub-elements) as a single String? For
example, if I persist e-mail to XML, I'd like to use digester to read
the e-mail address list, etc., but the HTML content of the mail should
be read verbatim.

<email>
<to>bill</to>
<subject>test</subject>
<content> Hello world! <i>This text is italic</i> and <b>this text is
bold</b> This is plain text.</content>
</email>

====>

Class email {
List to, cc, bcc;
String subject;
String content; // HTML content
};



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to