dummy_foundation/lib/XML/DOM/DOMImplementation.pod
changeset 4 60053dab7e2a
parent 3 8b87ea768cb8
child 5 842a773e65f2
child 6 c34a018f3291
equal deleted inserted replaced
3:8b87ea768cb8 4:60053dab7e2a
     1 =head1 NAME
       
     2 
       
     3 XML::DOM::DOMImplementation - Information about XML::DOM implementation
       
     4 
       
     5 =head1 DESCRIPTION
       
     6 
       
     7 The DOMImplementation interface provides a number of methods for
       
     8 performing operations that are independent of any particular instance
       
     9 of the document object model.
       
    10 
       
    11 The DOM Level 1 does not specify a way of creating a document instance,
       
    12 and hence document creation is an operation specific to an
       
    13 implementation. Future Levels of the DOM specification are expected to
       
    14 provide methods for creating documents directly.
       
    15 
       
    16 =head2 METHODS
       
    17 
       
    18 =over 4
       
    19 
       
    20 =item hasFeature (feature, version)
       
    21 
       
    22 Returns 1 if and only if feature equals "XML" and version equals "1.0".
       
    23 
       
    24 =back