MonoMappedPalette.st
changeset 3847 288ab85676aa
child 3848 84597432b833
equal deleted inserted replaced
3846:8df3068ff6e4 3847:288ab85676aa
       
     1 "
       
     2  COPYRIGHT (c) 1997 by eXept Software AG / Claus Gittinger
       
     3               All Rights Reserved
       
     4 
       
     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
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
       
    12 
       
    13 
       
    14 
       
    15 
       
    16 "{ Package: 'stx:libcompat' }"
       
    17 
       
    18 MappedPalette subclass:#MonoMappedPalette
       
    19 	instanceVariableNames:''
       
    20 	classVariableNames:''
       
    21 	poolDictionaries:''
       
    22 	category:'Compatibility-ST80'
       
    23 !
       
    24 
       
    25 !MonoMappedPalette class methodsFor:'documentation'!
       
    26 
       
    27 copyright
       
    28 "
       
    29  COPYRIGHT (c) 1997 by eXept Software AG / Claus Gittinger
       
    30               All Rights Reserved
       
    31 
       
    32  This software is furnished under a license and may be used
       
    33  only in accordance with the terms of that license and with the
       
    34  inclusion of the above copyright notice.   This software may not
       
    35  be provided or otherwise made available to, or used by, any
       
    36  other person.  No title to or ownership of the software is
       
    37  hereby transferred.
       
    38 "
       
    39 
       
    40 
       
    41 
       
    42 !
       
    43 
       
    44 documentation
       
    45 "
       
    46     ST-80 compatibility class.
       
    47     This may be required when existing code has to be ported to ST/X;
       
    48     however, it may not be complete and more protocol may be added in the future.
       
    49     The code here was created when public domain code (Manchester) had to
       
    50     be ported to ST/X and missing classes/methods were encountered, and code added
       
    51     by reasoning 'what the original class could probably do there'.
       
    52 
       
    53     This is currently not used by ST/X itself.
       
    54 
       
    55     This is an additional goody class; therefore:
       
    56 
       
    57     THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTOR ``AS IS'' AND
       
    58     ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
       
    59     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
       
    60     ARE DISCLAIMED.  IN NO EVENT SHALL THE CONTRIBUTOR BE LIABLE
       
    61     FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
       
    62     DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
       
    63     OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
       
    64     HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
       
    65     LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
       
    66     OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
       
    67     SUCH DAMAGE.
       
    68 "
       
    69 
       
    70 
       
    71 
       
    72 ! !
       
    73 
       
    74 !MonoMappedPalette class methodsFor:'documentation'!
       
    75 
       
    76 version
       
    77     ^ '$Header: /cvs/stx/stx/libview/MonoMappedPalette.st,v 1.1 2003-04-10 14:44:41 cg Exp $'
       
    78 ! !