xsl-fo/FO__Pixel.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 12 May 2015 12:20:53 +0100
changeset 296 ea3dbc023c80
parent 0 xsl-fo/trunk/FO__Pixel.st@5057afe1ec87
permissions -rw-r--r--
Post-convert fixes Removed intermediate `trunk` directories used for branching in SVN

"{ Package: 'stx:goodies/xmlsuite/xsl-fo' }"

"{ NameSpace: FO }"

Unit subclass:#Pixel
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'FO-Units'
!


!Pixel class methodsFor:'accessing'!

abbrev
    "Superclass says that I am responsible to implement this method"

    ^'px'

    "Created: / 07-04-2007 / 16:46:43 / janfrog"
! !

!Pixel methodsFor:'converting'!

inPixels

    ^self

    "Created: / 07-04-2007 / 16:45:33 / janfrog"
! !

!Pixel class methodsFor:'documentation'!

version
    ^ '$Header: /opt/data/cvs/stx/goodies/xmlsuite/xsl-fo/FO__Pixel.st,v 1.1 2007-04-13 15:39:43 vranyj1 Exp $'
! !