diff -r 7c4f38c59b2a -r f6b3270f30d1 MultiImage.st --- a/MultiImage.st Mon Apr 28 12:16:30 2003 +0200 +++ b/MultiImage.st Tue Apr 29 16:26:55 2003 +0200 @@ -1,3 +1,15 @@ +" + COPYRIGHT (c) 2003 by eXept Software AG + All Rights Reserved + + This software is furnished under a license and may be used + only in accordance with the terms of that license and with the + inclusion of the above copyright notice. This software may not + be provided or otherwise made available to, or used by, any + other person. No title to or ownership of the software is + hereby transferred. +" + "{ Package: 'stx:libview2' }" Object subclass:#MultiImage @@ -7,6 +19,30 @@ category:'Graphics-Images' ! +!MultiImage class methodsFor:'documentation'! + +copyright +" + COPYRIGHT (c) 2003 by eXept Software AG + All Rights Reserved + + This software is furnished under a license and may be used + only in accordance with the terms of that license and with the + inclusion of the above copyright notice. This software may not + be provided or otherwise made available to, or used by, any + other person. No title to or ownership of the software is + hereby transferred. +" +! + +documentation +" + A multiImage is an image which is drawn by drawing multiple images on top of each other. + + [author:] + Claus Gittinger +" +! ! !MultiImage class methodsFor:'instance creation'! @@ -79,5 +115,5 @@ !MultiImage class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libview2/MultiImage.st,v 1.6 2003-02-28 17:42:42 cg Exp $' + ^ '$Header: /cvs/stx/stx/libview2/MultiImage.st,v 1.7 2003-04-29 14:26:55 cg Exp $' ! !