ProjectDefinition.st
changeset 9553 0ba9e1ed1aee
parent 9551 b85eead6b4ac
child 9555 5b5d49d5f09d
equal deleted inserted replaced
9552:4f4b3f5cfc53 9553:0ba9e1ed1aee
       
     1 "
       
     2  COPYRIGHT (c) 2006 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 
     1 "{ Package: 'stx:libbasic3' }"
    13 "{ Package: 'stx:libbasic3' }"
     2 
    14 
     3 Object subclass:#BuildDefinition
    15 Object subclass:#BuildDefinition
     4 	instanceVariableNames:''
    16 	instanceVariableNames:''
     5 	classVariableNames:''
    17 	classVariableNames:''
     6 	poolDictionaries:''
    18 	poolDictionaries:''
     7 	category:'System-Support-Projects'
    19 	category:'System-Support-Projects'
     8 !
    20 !
     9 
    21 
       
    22 !BuildDefinition class methodsFor:'documentation'!
       
    23 
       
    24 copyright
       
    25 "
       
    26  COPYRIGHT (c) 2006 by eXept Software AG
       
    27               All Rights Reserved
       
    28 
       
    29  This software is furnished under a license and may be used
       
    30  only in accordance with the terms of that license and with the
       
    31  inclusion of the above copyright notice.   This software may not
       
    32  be provided or otherwise made available to, or used by, any
       
    33  other person.  No title to or ownership of the software is
       
    34  hereby transferred.
       
    35 "
       
    36 ! !
    10 
    37 
    11 !BuildDefinition class methodsFor:'accessing'!
    38 !BuildDefinition class methodsFor:'accessing'!
    12 
    39 
    13 defaultCategory
    40 defaultCategory
    14     ^'* Projects *'
    41     ^'* Projects *'
   944 ! !
   971 ! !
   945 
   972 
   946 !BuildDefinition class methodsFor:'documentation'!
   973 !BuildDefinition class methodsFor:'documentation'!
   947 
   974 
   948 version
   975 version
   949     ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.8 2006-08-17 07:50:24 cg Exp $'
   976     ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.9 2006-08-17 07:50:54 cg Exp $'
   950 ! !
   977 ! !