GridBagLayoutInfo.st
changeset 2938 98e2e57624a7
parent 1431 0cc20a8f2f7c
--- a/GridBagLayoutInfo.st	Mon Mar 13 16:55:08 2006 +0100
+++ b/GridBagLayoutInfo.st	Mon Mar 13 16:55:20 2006 +0100
@@ -12,6 +12,8 @@
 "
 
 
+"{ Package: 'stx:libwidg2' }"
+
 Object subclass:#GridBagLayoutInfo
 	instanceVariableNames:'width height startX startY minWidth minHeight weightX weightY'
 	classVariableNames:''
@@ -61,128 +63,96 @@
 !GridBagLayoutInfo methodsFor:'accessing'!
 
 height
-    "return the value of the instance variable 'height' (automatically generated)"
-
     ^ height
 
     "Created: / 17.1.1998 / 14:32:39 / av"
 !
 
 height:something
-    "set the value of the instance variable 'height' (automatically generated)"
-
     height := something.
 
     "Created: / 17.1.1998 / 14:32:39 / av"
 !
 
 minHeight
-    "return the value of the instance variable 'minHeight' (automatically generated)"
-
     ^ minHeight
 
     "Created: / 17.1.1998 / 14:32:39 / av"
 !
 
 minHeight:something
-    "set the value of the instance variable 'minHeight' (automatically generated)"
-
     minHeight := something.
 
     "Created: / 17.1.1998 / 14:32:39 / av"
 !
 
 minWidth
-    "return the value of the instance variable 'minWidth' (automatically generated)"
-
     ^ minWidth
 
     "Created: / 17.1.1998 / 14:32:39 / av"
 !
 
 minWidth:something
-    "set the value of the instance variable 'minWidth' (automatically generated)"
-
     minWidth := something.
 
     "Created: / 17.1.1998 / 14:32:39 / av"
 !
 
 startX
-    "return the value of the instance variable 'startX' (automatically generated)"
-
     ^ startX
 
     "Created: / 17.1.1998 / 14:32:39 / av"
 !
 
 startX:something
-    "set the value of the instance variable 'startX' (automatically generated)"
-
     startX := something.
 
     "Created: / 17.1.1998 / 14:32:39 / av"
 !
 
 startY
-    "return the value of the instance variable 'startY' (automatically generated)"
-
     ^ startY
 
     "Created: / 17.1.1998 / 14:32:39 / av"
 !
 
 startY:something
-    "set the value of the instance variable 'startY' (automatically generated)"
-
     startY := something.
 
     "Created: / 17.1.1998 / 14:32:39 / av"
 !
 
 weightX
-    "return the value of the instance variable 'weightX' (automatically generated)"
-
     ^ weightX
 
     "Created: / 17.1.1998 / 14:32:39 / av"
 !
 
 weightX:something
-    "set the value of the instance variable 'weightX' (automatically generated)"
-
     weightX := something.
 
     "Created: / 17.1.1998 / 14:32:39 / av"
 !
 
 weightY
-    "return the value of the instance variable 'weightY' (automatically generated)"
-
     ^ weightY
 
     "Created: / 17.1.1998 / 14:32:39 / av"
 !
 
 weightY:something
-    "set the value of the instance variable 'weightY' (automatically generated)"
-
     weightY := something.
 
     "Created: / 17.1.1998 / 14:32:39 / av"
 !
 
 width
-    "return the value of the instance variable 'width' (automatically generated)"
-
     ^ width
 
     "Created: / 17.1.1998 / 14:32:39 / av"
 !
 
 width:something
-    "set the value of the instance variable 'width' (automatically generated)"
-
     width := something.
 
     "Created: / 17.1.1998 / 14:32:39 / av"
@@ -207,5 +177,5 @@
 !GridBagLayoutInfo class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/GridBagLayoutInfo.st,v 1.2 1999-07-06 16:49:14 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/GridBagLayoutInfo.st,v 1.3 2006-03-13 15:55:20 cg Exp $'
 ! !