MappedPalette.st
changeset 7837 2af7483d8ef9
parent 3876 f4dc6267a30a
child 7954 975dd74ad78f
equal deleted inserted replaced
7836:b78168c8feea 7837:2af7483d8ef9
     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 
    13 
    13 
    14 "{ NameSpace: Smalltalk }"
    14 
       
    15 "{ Package: 'stx:libview' }"
       
    16 
    15 
    17 ColorPalette subclass:#MappedPalette
    16 ColorPalette subclass:#MappedPalette
    18 	instanceVariableNames:''
    17 	instanceVariableNames:''
    19 	classVariableNames:''
    18 	classVariableNames:''
    20 	poolDictionaries:''
    19 	poolDictionaries:''
    78 
    77 
    79     "Created: 7.10.1996 / 11:29:01 / cg"
    78     "Created: 7.10.1996 / 11:29:01 / cg"
    80     "Modified: 14.2.1997 / 17:43:31 / cg"
    79     "Modified: 14.2.1997 / 17:43:31 / cg"
    81 ! !
    80 ! !
    82 
    81 
       
    82 !MappedPalette methodsFor:'testing'!
       
    83 
       
    84 isMappedPalette
       
    85     ^ true
       
    86 
       
    87     "Created: / 03-02-2017 / 21:41:06 / cg"
       
    88 ! !
       
    89 
    83 !MappedPalette class methodsFor:'documentation'!
    90 !MappedPalette class methodsFor:'documentation'!
    84 
    91 
    85 version
    92 version
    86     ^ '$Header: /cvs/stx/stx/libview/MappedPalette.st,v 1.5 2003-05-06 18:26:22 cg Exp $'
    93     ^ '$Header$'
    87 ! !
    94 ! !
       
    95