AmbiguousMessage.st
author Claus Gittinger <cg@exept.de>
Sun, 03 Jul 2011 17:01:04 +0200
changeset 13480 27c57fc46853
parent 13403 9cdd42752750
child 14876 4074951f9879
child 18011 deb0c3355881
permissions -rw-r--r--
changed: #copyright
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13403
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
     1
"
13480
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
     2
 COPYRIGHT (c) 2010 by Jan Vrany, SWING Research Group. CTU in Prague
13403
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
     3
              All Rights Reserved
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
     4
13480
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
     5
Permission is hereby granted, free of charge, to any person
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
     6
obtaining a copy of this software and associated documentation
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
     7
files (the 'Software'), to deal in the Software without
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
     8
restriction, including without limitation the rights to use,
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
     9
copy, modify, merge, publish, distribute, sublicense, and/or sell
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    10
copies of the Software, and to permit persons to whom the
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    11
Software is furnished to do so, subject to the following
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    12
conditions:
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    13
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    14
The above copyright notice and this permission notice shall be
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    15
included in all copies or substantial portions of the Software.
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    16
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    17
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    18
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    19
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    20
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    21
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    22
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    23
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    24
OTHER DEALINGS IN THE SOFTWARE.
13403
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    25
"
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    26
"{ Package: 'stx:libbasic' }"
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    27
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    28
ProceedableError subclass:#AmbiguousMessage
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    29
	instanceVariableNames:''
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    30
	classVariableNames:''
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    31
	poolDictionaries:''
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    32
	category:'Kernel-Extensions'
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    33
!
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    34
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    35
!AmbiguousMessage class methodsFor:'documentation'!
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    36
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    37
copyright
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    38
"
13480
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    39
 COPYRIGHT (c) 2010 by Jan Vrany, SWING Research Group. CTU in Prague
13403
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    40
              All Rights Reserved
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    41
13480
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    42
Permission is hereby granted, free of charge, to any person
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    43
obtaining a copy of this software and associated documentation
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    44
files (the 'Software'), to deal in the Software without
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    45
restriction, including without limitation the rights to use,
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    46
copy, modify, merge, publish, distribute, sublicense, and/or sell
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    47
copies of the Software, and to permit persons to whom the
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    48
Software is furnished to do so, subject to the following
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    49
conditions:
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    50
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    51
The above copyright notice and this permission notice shall be
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    52
included in all copies or substantial portions of the Software.
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    53
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    54
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    55
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    56
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    57
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    58
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    59
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    60
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    61
OTHER DEALINGS IN THE SOFTWARE.
13403
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    62
"
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    63
! !
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    64
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    65
!AmbiguousMessage class methodsFor:'documentation'!
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    66
13480
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    67
version_CVS
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    68
    ^ '$Header: /cvs/stx/stx/libbasic/AmbiguousMessage.st,v 1.2 2011-07-03 15:01:04 cg Exp $'
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    69
!
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    70
13403
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    71
version_SVN
13480
27c57fc46853 changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 13403
diff changeset
    72
    ^ '§Id: AmbiguousMessage.st,v 1.1 2011/06/28 11:04:04 vrany Exp §'
13403
9cdd42752750 added AmbiguousMessage, Annotation, NamespaceAwareLookup
vrany
parents:
diff changeset
    73
! !