stx_libview2.st
changeset 2152 9c76a6023c5f
parent 2151 ee49fc31b2d6
child 2160 07573339e27b
--- a/stx_libview2.st	Wed Aug 23 00:03:46 2006 +0200
+++ b/stx_libview2.st	Wed Aug 23 00:07:14 2006 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2006 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:libview2' }"
 
 LibraryDefinition subclass:#stx_libview2
@@ -7,6 +19,28 @@
 	category:'* Projects *'
 !
 
+!stx_libview2 class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2006 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.
+"
+!
+
+documentation
+"
+    Build-Information for creation of the st/x standard library: stx_libview2.
+    This library contains additional graphics-interfacing components and infrastructure.
+"
+! !
 
 !stx_libview2 class methodsFor:'description'!
 
@@ -237,13 +271,25 @@
 description
     "Return a description string which will appear in nt.def / bc.def"
 
-    ^ 'Smalltalk/X Class library'
+    ^ 'Smalltalk/X Additional Graphic Interfacing'
+
+    "Modified: / 23-08-2006 / 00:06:47 / cg"
+!
+
+fileDescription
+    "Return a description string which will appear in <lib>.rc"
+
+    ^ 'Smalltalk/X Additional Graphic Interfacing'
+
+    "Created: / 23-08-2006 / 00:07:05 / cg"
 !
 
 legalCopyright
     "Return copyright string which will appear in <lib>.rc"
 
-    ^ 'Copyright eXept Software AG 1998-2006'
+    ^ 'Copyright Claus Gittinger 1988-2006\nCopyright eXept Software AG 1998-2006'
+
+    "Modified: / 23-08-2006 / 00:05:12 / cg"
 !
 
 productName
@@ -255,5 +301,5 @@
 !stx_libview2 class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/stx_libview2.st,v 1.1 2006-08-22 22:03:46 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/stx_libview2.st,v 1.2 2006-08-22 22:07:14 cg Exp $'
 ! !