VisualPart.st
changeset 265 45c83acd7562
parent 254 1286cec58b5d
child 289 5620dcc0c5f6
--- a/VisualPart.st	Mon May 13 10:30:42 1996 +0200
+++ b/VisualPart.st	Mon May 13 10:50:38 1996 +0200
@@ -5,6 +5,33 @@
 	category:'Graphics-Display Objects'
 !
 
+!VisualPart class methodsFor:'documentation'!
+
+documentation
+"
+    abstract superclass for all kinds of visual components, which
+    are containers for some other component.
+    This class and its subclasses (currently) exist mostly for
+    ST-80 compatibility - to provide a home for ported PD classes,
+    which depend on the VisualPart hierarchy.
+
+    Notice: 
+        this class was implemented using protocol information
+        from alpha testers and from the Hopkins/Horan book.
+        - it may not be complete or compatible to the corresponding ST-80 class. 
+        If you encounter any incompatibilities, please forward a note 
+        describing the incompatibility verbal (i.e. no code) to the ST/X team.
+        This is still being constructed - not yet finished.
+
+    [author:]
+        Claus Gittinger
+
+    [see also:]
+        GeometricWrapper
+"
+
+
+! !
 
 !VisualPart methodsFor:'accessing'!
 
@@ -54,5 +81,5 @@
 !VisualPart class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/VisualPart.st,v 1.2 1996-05-09 08:43:43 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/VisualPart.st,v 1.3 1996-05-13 08:50:34 cg Exp $'
 ! !