packages/ClassPrerequisite.st
author Claus Gittinger <cg@exept.de>
Sun, 07 Jul 2019 23:42:57 +0200
changeset 4453 5e6ad8c5a97e
parent 1444 b48e0dc3740e
child 3011 1997ff6e7e55
permissions -rw-r--r--
#FEATURE by cg class: AbstractSourceCodeManager class added: #revisionLogOfFile:fromRevision:toRevision: #revisionLogOfFile:fromRevision:toRevision:finishAfter: #revisionLogOfFile:numberOfRevisions: comment/format in: #revisionLogOf:fromRevision:toRevision:numberOfRevisions:fileName:directory:module: #revisionLogOf:numberOfRevisions:fileName:directory:module:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1444
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
     1
"
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
     2
 COPYRIGHT (c) 2003 by eXept Software AG
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
     3
              All Rights Reserved
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
     4
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
     5
 This software is furnished under a license and may be used
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
     6
 only in accordance with the terms of that license and with the
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
     8
 be provided or otherwise made available to, or used by, any
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
     9
 other person.  No title to or ownership of the software is
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
    10
 hereby transferred.
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
    11
"
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
    12
1230
2dcce6385978 initial checkin
james
parents:
diff changeset
    13
"{ Package: 'stx:libbasic3' }"
2dcce6385978 initial checkin
james
parents:
diff changeset
    14
2dcce6385978 initial checkin
james
parents:
diff changeset
    15
"{ NameSpace: Packages }"
2dcce6385978 initial checkin
james
parents:
diff changeset
    16
2dcce6385978 initial checkin
james
parents:
diff changeset
    17
Prerequisite subclass:#ClassPrerequisite
2dcce6385978 initial checkin
james
parents:
diff changeset
    18
	instanceVariableNames:''
2dcce6385978 initial checkin
james
parents:
diff changeset
    19
	classVariableNames:''
2dcce6385978 initial checkin
james
parents:
diff changeset
    20
	poolDictionaries:''
2dcce6385978 initial checkin
james
parents:
diff changeset
    21
	category:'Package-Prerequisite'
2dcce6385978 initial checkin
james
parents:
diff changeset
    22
!
2dcce6385978 initial checkin
james
parents:
diff changeset
    23
1444
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
    24
!ClassPrerequisite class methodsFor:'documentation'!
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
    25
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
    26
copyright
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
    27
"
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
    28
 COPYRIGHT (c) 2003 by eXept Software AG
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
    29
              All Rights Reserved
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
    30
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
    31
 This software is furnished under a license and may be used
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
    32
 only in accordance with the terms of that license and with the
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
    33
 inclusion of the above copyright notice.   This software may not
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
    34
 be provided or otherwise made available to, or used by, any
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
    35
 other person.  No title to or ownership of the software is
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
    36
 hereby transferred.
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
    37
"
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
    38
! !
1230
2dcce6385978 initial checkin
james
parents:
diff changeset
    39
2dcce6385978 initial checkin
james
parents:
diff changeset
    40
!ClassPrerequisite methodsFor:'evaluation'!
2dcce6385978 initial checkin
james
parents:
diff changeset
    41
2dcce6385978 initial checkin
james
parents:
diff changeset
    42
testCondition
2dcce6385978 initial checkin
james
parents:
diff changeset
    43
    "returns a boolean"
2dcce6385978 initial checkin
james
parents:
diff changeset
    44
    ^ (Smalltalk at:name) notNil
2dcce6385978 initial checkin
james
parents:
diff changeset
    45
! !
2dcce6385978 initial checkin
james
parents:
diff changeset
    46
2dcce6385978 initial checkin
james
parents:
diff changeset
    47
!ClassPrerequisite methodsFor:'queries'!
2dcce6385978 initial checkin
james
parents:
diff changeset
    48
2dcce6385978 initial checkin
james
parents:
diff changeset
    49
isClassPrerequisite
2dcce6385978 initial checkin
james
parents:
diff changeset
    50
    ^ true
2dcce6385978 initial checkin
james
parents:
diff changeset
    51
! !
2dcce6385978 initial checkin
james
parents:
diff changeset
    52
2dcce6385978 initial checkin
james
parents:
diff changeset
    53
!ClassPrerequisite class methodsFor:'documentation'!
2dcce6385978 initial checkin
james
parents:
diff changeset
    54
2dcce6385978 initial checkin
james
parents:
diff changeset
    55
version
1444
b48e0dc3740e copyright
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
    56
    ^ '$Header: /cvs/stx/stx/libbasic3/packages/ClassPrerequisite.st,v 1.2 2006-01-10 09:29:39 cg Exp $'
1230
2dcce6385978 initial checkin
james
parents:
diff changeset
    57
! !