home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 November / PCONLINE_11_99.ISO / filesbbs / OS2 / APCHSSL2.ZIP / OS2HTTPD / jserv / org / openxml / XMLCollection.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-05-16  |  502 b   |  15 lines

  1. package org.openxml;
  2.  
  3. import org.openxml.dom.CollectionImpl;
  4. import org.w3c.dom.Document;
  5.  
  6. public class XMLCollection extends CollectionImpl {
  7.    public XMLCollection(XMLElement var1, String var2) {
  8.       super(var1, var2);
  9.    }
  10.  
  11.    public XMLCollection(Document var1, String var2) {
  12.       super(var1.getDocumentElement(), var2);
  13.    }
  14. }
  15.