DataBaseSourceCodeManagerUtilities.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 01 Feb 2019 23:46:31 +0000
branchjv
changeset 4396 5333bef41730
parent 4381 5f0582aa5462
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3850
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
     1
"
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
     3
              All Rights Reserved
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
     4
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
     5
 This software is furnished under a license and may be used
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
     6
 only in accordance with the terms of that license and with the
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
     8
 be provided or otherwise made available to, or used by, any
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
     9
 other person.  No title to or ownership of the software is
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
    10
 hereby transferred.
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
    11
"
3665
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic3' }"
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
3850
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
    14
"{ NameSpace: Smalltalk }"
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
    15
3665
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
SourceCodeManagerUtilities subclass:#DataBaseSourceCodeManagerUtilities
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	instanceVariableNames:''
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	category:'System-SourceCodeManagement'
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
3850
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
    23
!DataBaseSourceCodeManagerUtilities class methodsFor:'documentation'!
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
    24
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
    25
copyright
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
    26
"
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
    27
 COPYRIGHT (c) 2006 by eXept Software AG
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
    28
              All Rights Reserved
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
    29
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
    30
 This software is furnished under a license and may be used
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
    31
 only in accordance with the terms of that license and with the
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
    33
 be provided or otherwise made available to, or used by, any
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
    34
 other person.  No title to or ownership of the software is
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
    35
 hereby transferred.
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
    36
"
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3665
diff changeset
    37
! !
3665
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
!DataBaseSourceCodeManagerUtilities class methodsFor:'documentation'!
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
version
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
    ^ '$Header: /cvs/stx/stx/libbasic3/DataBaseSourceCodeManagerUtilities.st,v 1.1 2014-11-29 02:31:37 cg Exp $'
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
!
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
version_CVS
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    ^ '$Header: /cvs/stx/stx/libbasic3/DataBaseSourceCodeManagerUtilities.st,v 1.1 2014-11-29 02:31:37 cg Exp $'
4381
5f0582aa5462 Various fixes for Bee source / package writer
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3850
diff changeset
    47
!
5f0582aa5462 Various fixes for Bee source / package writer
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3850
diff changeset
    48
5f0582aa5462 Various fixes for Bee source / package writer
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3850
diff changeset
    49
version_HG
5f0582aa5462 Various fixes for Bee source / package writer
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3850
diff changeset
    50
5f0582aa5462 Various fixes for Bee source / package writer
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3850
diff changeset
    51
    ^ '$Changeset: <not expanded> $'
3665
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
! !
875acaf17eb9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53