added copyright & documentation
authorClaus Gittinger <cg@exept.de>
Sat, 25 Apr 1998 13:11:50 +0200
changeset 809 6f127dd5e578
parent 808 4e2ab5e77344
child 810 032e13b1bfda
added copyright & documentation
InspectorList.st
InspectorListView.st
InspectorPanelView.st
InspectorView.st
NewInspectorList.st
NewInspectorListView.st
NewInspectorPanelView.st
NewInspectorView.st
--- a/InspectorList.st	Thu Apr 23 14:32:21 1998 +0200
+++ b/InspectorList.st	Sat Apr 25 13:11:50 1998 +0200
@@ -1,3 +1,16 @@
+"
+ COPYRIGHT (c) 1997 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.
+"
+
+
 "{ NameSpace: NewInspector }"
 
 Object subclass:#InspectorList
@@ -7,6 +20,22 @@
 	category:'Inspector'
 !
 
+!InspectorList class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1997 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.
+"
+
+! !
 
 !InspectorList class methodsFor:'instance creation'!
 
--- a/InspectorListView.st	Thu Apr 23 14:32:21 1998 +0200
+++ b/InspectorListView.st	Sat Apr 25 13:11:50 1998 +0200
@@ -1,3 +1,17 @@
+"
+ COPYRIGHT (c) 1997 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.
+"
+
+
+
 "{ NameSpace: NewInspector }"
 
 SelectionInListView subclass:#InspectorListView
@@ -9,6 +23,22 @@
 
 !InspectorListView class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 1997 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.
+"
+
+
+!
+
 examples
 "
         open a list view on an instance
--- a/InspectorPanelView.st	Thu Apr 23 14:32:21 1998 +0200
+++ b/InspectorPanelView.st	Sat Apr 25 13:11:50 1998 +0200
@@ -1,3 +1,17 @@
+"
+ COPYRIGHT (c) 1997 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.
+"
+
+
+
 "{ NameSpace: NewInspector }"
 
 SimpleView subclass:#InspectorPanelView
@@ -10,6 +24,22 @@
 
 !InspectorPanelView class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 1997 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.
+"
+
+
+!
+
 examples
 "
     example 1
--- a/InspectorView.st	Thu Apr 23 14:32:21 1998 +0200
+++ b/InspectorView.st	Sat Apr 25 13:11:50 1998 +0200
@@ -1,3 +1,17 @@
+"
+ COPYRIGHT (c) 1997 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.
+"
+
+
+
 "{ NameSpace: NewInspector }"
 
 VariableVerticalPanel subclass:#InspectorView
@@ -9,6 +23,40 @@
 
 !InspectorView class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 1997 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
+"
+    a new (multipane) inspector;
+    open with:
+        NewInspector::InspectorView inspect:someObject
+
+    install as standard inspector:
+        Smalltalk at:#Inspector put:(NewInspector::InspectorView)
+
+    [open with:]
+        NewInspector::InspectorView 
+                inspect:(Array with:#hello with:'hello' with:#(1 2 3) asSortedCollection with:Display)
+
+    [author:]
+        Claus Atzkern
+"
+!
+
 examples
 
 "
--- a/NewInspectorList.st	Thu Apr 23 14:32:21 1998 +0200
+++ b/NewInspectorList.st	Sat Apr 25 13:11:50 1998 +0200
@@ -1,3 +1,16 @@
+"
+ COPYRIGHT (c) 1997 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.
+"
+
+
 "{ NameSpace: NewInspector }"
 
 Object subclass:#InspectorList
@@ -7,6 +20,22 @@
 	category:'Inspector'
 !
 
+!InspectorList class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1997 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.
+"
+
+! !
 
 !InspectorList class methodsFor:'instance creation'!
 
--- a/NewInspectorListView.st	Thu Apr 23 14:32:21 1998 +0200
+++ b/NewInspectorListView.st	Sat Apr 25 13:11:50 1998 +0200
@@ -1,3 +1,17 @@
+"
+ COPYRIGHT (c) 1997 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.
+"
+
+
+
 "{ NameSpace: NewInspector }"
 
 SelectionInListView subclass:#InspectorListView
@@ -9,6 +23,22 @@
 
 !InspectorListView class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 1997 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.
+"
+
+
+!
+
 examples
 "
         open a list view on an instance
--- a/NewInspectorPanelView.st	Thu Apr 23 14:32:21 1998 +0200
+++ b/NewInspectorPanelView.st	Sat Apr 25 13:11:50 1998 +0200
@@ -1,3 +1,17 @@
+"
+ COPYRIGHT (c) 1997 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.
+"
+
+
+
 "{ NameSpace: NewInspector }"
 
 SimpleView subclass:#InspectorPanelView
@@ -10,6 +24,22 @@
 
 !InspectorPanelView class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 1997 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.
+"
+
+
+!
+
 examples
 "
     example 1
--- a/NewInspectorView.st	Thu Apr 23 14:32:21 1998 +0200
+++ b/NewInspectorView.st	Sat Apr 25 13:11:50 1998 +0200
@@ -1,3 +1,17 @@
+"
+ COPYRIGHT (c) 1997 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.
+"
+
+
+
 "{ NameSpace: NewInspector }"
 
 VariableVerticalPanel subclass:#InspectorView
@@ -9,6 +23,40 @@
 
 !InspectorView class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 1997 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
+"
+    a new (multipane) inspector;
+    open with:
+        NewInspector::InspectorView inspect:someObject
+
+    install as standard inspector:
+        Smalltalk at:#Inspector put:(NewInspector::InspectorView)
+
+    [open with:]
+        NewInspector::InspectorView 
+                inspect:(Array with:#hello with:'hello' with:#(1 2 3) asSortedCollection with:Display)
+
+    [author:]
+        Claus Atzkern
+"
+!
+
 examples
 
 "