xsl-fo/trunk/FO__FOImplementation.st
changeset 0 5057afe1ec87
equal deleted inserted replaced
-1:000000000000 0:5057afe1ec87
       
     1 "{ Package: 'stx:goodies/xmlsuite/xsl-fo' }"
       
     2 
       
     3 "{ NameSpace: FO }"
       
     4 
       
     5 XMLv2::XMLSuiteDOM3Implementation subclass:#FOImplementation
       
     6 	instanceVariableNames:''
       
     7 	classVariableNames:''
       
     8 	poolDictionaries:''
       
     9 	category:'FO-DOM3 Implemementation'
       
    10 !
       
    11 
       
    12 
       
    13 !FOImplementation methodsFor:'accessing'!
       
    14 
       
    15 featureArray 
       
    16     "
       
    17         
       
    18         XMLv2::DOMImplementationRegistry getDOMImplementation:'+XML 3.0 +XSLT-FO 1.0'   
       
    19     "
       
    20 
       
    21 
       
    22 
       
    23     ^super featureArray , #(('XSLT-FO' '1.0') ('+XSLT-FO' '1.0'))
       
    24 
       
    25     "Created: / 07-04-2007 / 14:45:48 / janfrog"
       
    26 ! !
       
    27 
       
    28 !FOImplementation methodsFor:'instance creation'!
       
    29 
       
    30 createDocument
       
    31 
       
    32     ^FO::Document new
       
    33 
       
    34     "Created: / 07-04-2007 / 14:56:04 / janfrog"
       
    35 ! !
       
    36 
       
    37 !FOImplementation class methodsFor:'documentation'!
       
    38 
       
    39 version
       
    40     ^ '$Header: /opt/data/cvs/stx/goodies/xmlsuite/xsl-fo/FO__FOImplementation.st,v 1.1 2007-04-13 15:41:44 vranyj1 Exp $'
       
    41 ! !