xsl-fo/trunk/FO__Pixel.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 Unit subclass:#Pixel
       
     6 	instanceVariableNames:''
       
     7 	classVariableNames:''
       
     8 	poolDictionaries:''
       
     9 	category:'FO-Units'
       
    10 !
       
    11 
       
    12 
       
    13 !Pixel class methodsFor:'accessing'!
       
    14 
       
    15 abbrev
       
    16     "Superclass says that I am responsible to implement this method"
       
    17 
       
    18     ^'px'
       
    19 
       
    20     "Created: / 07-04-2007 / 16:46:43 / janfrog"
       
    21 ! !
       
    22 
       
    23 !Pixel methodsFor:'converting'!
       
    24 
       
    25 inPixels
       
    26 
       
    27     ^self
       
    28 
       
    29     "Created: / 07-04-2007 / 16:45:33 / janfrog"
       
    30 ! !
       
    31 
       
    32 !Pixel class methodsFor:'documentation'!
       
    33 
       
    34 version
       
    35     ^ '$Header: /opt/data/cvs/stx/goodies/xmlsuite/xsl-fo/FO__Pixel.st,v 1.1 2007-04-13 15:39:43 vranyj1 Exp $'
       
    36 ! !