MCEmptyPackageInfo.st
author Jan Vrany <jan.vrany@labware.com>
Tue, 11 Jul 2023 12:59:07 +0100
branchjv
changeset 1174 f0a16c301971
parent 1095 87f223484bc3
permissions -rw-r--r--
Make `ProjectDefinition >> #monticelloTimestamps_code` an extension in `stx:goodies/monticello` ...and convert it to use (not so) new annotation-based extension mechanism.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1095
87f223484bc3 Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present
Patrik Svestka <patrik.svestka@gmail.com>
parents: 626
diff changeset
     1
"{ Encoding: utf8 }"
87f223484bc3 Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present
Patrik Svestka <patrik.svestka@gmail.com>
parents: 626
diff changeset
     2
88
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
"{ Package: 'stx:goodies/monticello' }"
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
PackageInfo subclass:#MCEmptyPackageInfo
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	instanceVariableNames:''
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
	classVariableNames:''
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
	poolDictionaries:''
626
3fec5dc9c87f category change
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
     9
	category:'SCM-Monticello-Mocks'
88
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
!
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
!MCEmptyPackageInfo class methodsFor:'as yet unclassified'!
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
initialize
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	[self new register] on: MessageNotUnderstood do: []
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
!
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
wantsChangeSetLogging
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	^ false
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
! !
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!MCEmptyPackageInfo methodsFor:'as yet unclassified'!
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
classes
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
	^ #()
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
!
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
methods
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
	^ #()
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
!
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
packageName
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
	^ 'MCEmptyPackage'
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
! !
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
!MCEmptyPackageInfo class methodsFor:'documentation'!
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
292
5c59873bf93a initial checkin
Claus Gittinger <cg@exept.de>
parents: 201
diff changeset
    39
version
626
3fec5dc9c87f category change
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
    40
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCEmptyPackageInfo.st,v 1.4 2012-09-11 21:21:51 cg Exp $'
292
5c59873bf93a initial checkin
Claus Gittinger <cg@exept.de>
parents: 201
diff changeset
    41
!
5c59873bf93a initial checkin
Claus Gittinger <cg@exept.de>
parents: 201
diff changeset
    42
201
7ee31481708f added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 88
diff changeset
    43
version_CVS
626
3fec5dc9c87f category change
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
    44
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCEmptyPackageInfo.st,v 1.4 2012-09-11 21:21:51 cg Exp $'
201
7ee31481708f added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 88
diff changeset
    45
!
7ee31481708f added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 88
diff changeset
    46
7ee31481708f added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 88
diff changeset
    47
version_SVN
1095
87f223484bc3 Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present
Patrik Svestka <patrik.svestka@gmail.com>
parents: 626
diff changeset
    48
    ^ '§Id: MCEmptyPackageInfo.st 5 2010-08-29 07:30:29Z vranyj1 §'
88
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
! !
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
9b0af7ed25cb initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
MCEmptyPackageInfo initialize!