xsl-fo/trunk/FO__Pixel.st
changeset 0 5057afe1ec87
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xsl-fo/trunk/FO__Pixel.st	Tue Apr 08 19:47:42 2008 +0000
@@ -0,0 +1,36 @@
+"{ 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 $'
+! !