#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Tue, 24 Jan 2017 00:41:11 +0100
changeset 4097 6066489e5789
parent 4096 9bf52d1d4d87
child 4100 2cb9290bd5dc
child 4106 701025567fad
#OTHER by cg added: #copyright
UndefinedVariableNotification.st
--- a/UndefinedVariableNotification.st	Tue Jan 24 00:41:08 2017 +0100
+++ b/UndefinedVariableNotification.st	Tue Jan 24 00:41:11 2017 +0100
@@ -1,5 +1,18 @@
+"
+ COPYRIGHT (c) 2013 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
 "{ Package: 'stx:libcomp' }"
 
+"{ NameSpace: Smalltalk }"
+
 Notification subclass:#UndefinedVariableNotification
 	instanceVariableNames:'parser'
 	classVariableNames:''
@@ -7,6 +20,21 @@
 	category:'System-Compiler'
 !
 
+!UndefinedVariableNotification class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2013 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+! !
 
 !UndefinedVariableNotification methodsFor:'accessing'!
 
@@ -33,10 +61,10 @@
 !UndefinedVariableNotification class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/UndefinedVariableNotification.st,v 1.1 2013-04-03 21:17:14 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libcomp/UndefinedVariableNotification.st,v 1.1 2013-04-03 21:17:14 cg Exp $'
+    ^ '$Header$'
 ! !