150151152153154155156
* The XML entry document. * @throws IOException */ public Entry(Representation xmlEntry) throws IOException { super(xmlEntry); parse(new EntryContentReader(this)); }
165166167168169170171
* @throws IOException */ public Entry(Representation xmlEntry, EntryReader entryReader) throws IOException { super(xmlEntry); parse(new EntryContentReader(this, entryReader)); }