FillStyle.st
author Stefan Vogel <sv@exept.de>
Mon, 07 Nov 2016 09:53:09 +0100
changeset 7671 465f33f58b2e
parent 6683 f1ddfb71ff4f
child 7789 6ad368b82d0d
permissions -rw-r--r--
#REFACTORING by stefan class: GraphicsMedium changed: #new Screen current already returns the Display (no need for Screen current ? Display)

"{ Package: 'stx:libview' }"

Object subclass:#FillStyle
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Compatibility-Squeak-Balloon-Fills'
!

!FillStyle class methodsFor:'documentation'!

documentation
"
    an as-yet unused class.
    For now, this is present as compatibility class (for Squeak),
    but we may move change the fill/drawing code in the view hierarchy to use it later.

    [author:]
        cg

    [instance variables:]

    [class variables:]

    [see also:]

"
! !



!FillStyle class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libview/FillStyle.st,v 1.3 2014-12-19 21:31:26 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/libview/FillStyle.st,v 1.3 2014-12-19 21:31:26 cg Exp $'
! !