# HG changeset patch # User Stefan Vogel # Date 1470673978 -7200 # Node ID 0d8b05ac5efdd0f80bbb4065132d2186dc9fd795 # Parent aafef33b5a47e87675e1d15cf742a271212d7f93 initial checkin diff -r aafef33b5a47 -r 0d8b05ac5efd DisplayObjectView.st --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/DisplayObjectView.st Mon Aug 08 18:32:58 2016 +0200 @@ -0,0 +1,28 @@ +"{ Package: 'stx:libtool' }" + +"{ NameSpace: Smalltalk }" + +View subclass:#DisplayObjectView + instanceVariableNames:'' + classVariableNames:'' + poolDictionaries:'' + category:'Views-Misc' +! + + +!DisplayObjectView methodsFor:'drawing'! + +redraw + model displayOn:self x:0 y:(model ascentOn:self) +! ! + +!DisplayObjectView class methodsFor:'documentation'! + +version + ^ '$Header$' +! + +version_CVS + ^ '$Header$' +! ! +