InlineObjectClassDescription.st
changeset 11910 a0958b306417
child 13019 7606d0f2ba77
equal deleted inserted replaced
11909:3bc1c7c5eb7b 11910:a0958b306417
       
     1 "
       
     2  COPYRIGHT (c) 2009 by eXept Software AG
       
     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 "{ Package: 'stx:libbasic' }"
       
    13 
       
    14 ClassDescription subclass:#InlineObjectClassDescription
       
    15 	instanceVariableNames:''
       
    16 	classVariableNames:''
       
    17 	poolDictionaries:''
       
    18 	category:'Programming-Support'
       
    19 !
       
    20 
       
    21 !InlineObjectClassDescription class methodsFor:'documentation'!
       
    22 
       
    23 copyright
       
    24 "
       
    25  COPYRIGHT (c) 2009 by eXept Software AG
       
    26               All Rights Reserved
       
    27 
       
    28  This software is furnished under a license and may be used
       
    29  only in accordance with the terms of that license and with the
       
    30  inclusion of the above copyright notice.   This software may not
       
    31  be provided or otherwise made available to, or used by, any
       
    32  other person.  No title to or ownership of the software is
       
    33  hereby transferred.
       
    34 "
       
    35 ! !
       
    36 
       
    37 !InlineObjectClassDescription methodsFor:'queries'!
       
    38 
       
    39 name
       
    40     "although inline objects have no name, we return something
       
    41      useful here - there are many places (inspectors) where
       
    42      a classes name is asked for."
       
    43 
       
    44     ^ #'Inline Object'
       
    45 ! !
       
    46 
       
    47 !InlineObjectClassDescription class methodsFor:'documentation'!
       
    48 
       
    49 version
       
    50     ^ '$Header: /cvs/stx/stx/libbasic/InlineObjectClassDescription.st,v 1.1 2009-09-11 12:55:29 cg Exp $'
       
    51 ! !