NoBackground.st
changeset 7945 f448366bc702
parent 5681 a4f3846a0fc1
equal deleted inserted replaced
7944:12278ec87e7e 7945:f448366bc702
     1 "
     1 "
     2  COPYRIGHT (c) 2009 by eXept Software AG
     2  COPYRIGHT (c) 2009 by Claus Gittinger / eXept Software AG
     3               All Rights Reserved
     3               All Rights Reserved
     4 
     4 
     5  This software is furnished under a license and may be used
     5  This software is furnished under a license and may be used
     6  only in accordance with the terms of that license and with the
     6  only in accordance with the terms of that license and with the
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 "{ Package: 'stx:libview' }"
    12 "{ Package: 'stx:libview' }"
       
    13 
       
    14 "{ NameSpace: Smalltalk }"
    13 
    15 
    14 AbstractBackground subclass:#NoBackground
    16 AbstractBackground subclass:#NoBackground
    15 	instanceVariableNames:''
    17 	instanceVariableNames:''
    16 	classVariableNames:''
    18 	classVariableNames:''
    17 	poolDictionaries:''
    19 	poolDictionaries:''
    20 
    22 
    21 !NoBackground class methodsFor:'documentation'!
    23 !NoBackground class methodsFor:'documentation'!
    22 
    24 
    23 copyright
    25 copyright
    24 "
    26 "
    25  COPYRIGHT (c) 2009 by eXept Software AG
    27  COPYRIGHT (c) 2009 by Claus Gittinger / eXept Software AG
    26               All Rights Reserved
    28               All Rights Reserved
    27 
    29 
    28  This software is furnished under a license and may be used
    30  This software is furnished under a license and may be used
    29  only in accordance with the terms of that license and with the
    31  only in accordance with the terms of that license and with the
    30  inclusion of the above copyright notice.   This software may not
    32  inclusion of the above copyright notice.   This software may not
    43 ! !
    45 ! !
    44 
    46 
    45 !NoBackground class methodsFor:'documentation'!
    47 !NoBackground class methodsFor:'documentation'!
    46 
    48 
    47 version_CVS
    49 version_CVS
    48     ^ '$Header: /cvs/stx/stx/libview/NoBackground.st,v 1.3 2011-01-23 01:42:51 cg Exp $'
    50     ^ '$Header$'
    49 ! !
    51 ! !
       
    52