SourceCodeManagerError.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 22 Mar 2013 11:11:55 +0000
branchjv
changeset 3128 87750af738dc
parent 3125 08d6603c4fe9
parent 3121 19723298dd2c
child 4384 e28fcaaf93c7
permissions -rw-r--r--
Merged heads
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1987
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
     1
"
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
     3
              All Rights Reserved
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
     4
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
     5
 This software is furnished under a license and may be used
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
     6
 only in accordance with the terms of that license and with the
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
     8
 be provided or otherwise made available to, or used by, any
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
     9
 other person.  No title to or ownership of the software is
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    10
 hereby transferred.
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    11
"
1455
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic3' }"
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    13
2474
e2ae4aa96602 class definition
Stefan Vogel <sv@exept.de>
parents: 1987
diff changeset
    14
ProceedableError subclass:#SourceCodeManagerError
1455
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    18
	category:'System-SourceCodeManagement'
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    19
!
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    20
1987
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    21
!SourceCodeManagerError class methodsFor:'documentation'!
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    22
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    23
copyright
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    24
"
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    25
 COPYRIGHT (c) 2006 by eXept Software AG
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    26
              All Rights Reserved
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    27
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    28
 This software is furnished under a license and may be used
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    29
 only in accordance with the terms of that license and with the
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    31
 be provided or otherwise made available to, or used by, any
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    32
 other person.  No title to or ownership of the software is
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    33
 hereby transferred.
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    34
"
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    35
! !
1455
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    36
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    37
!SourceCodeManagerError class methodsFor:'documentation'!
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    38
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    39
version
3121
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
    40
    ^ '$Header: SourceCodeManagerError.st 1909 2012-03-31 00:14:49Z vranyj1 $'
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
    41
!
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
    42
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
    43
version_HG
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
    44
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
    45
    ^ '$Changeset: <not expanded> $'
3012
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    46
!
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    47
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    48
version_SVN
3121
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
    49
    ^ '§Id: SourceCodeManagerError.st 1909 2012-03-31 00:14:49Z vranyj1 §'
3012
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    50
! !
3121
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
    51