initial checkin
authorClaus Gittinger <cg@exept.de>
Tue, 14 Mar 2006 14:05:09 +0100
changeset 2942 71ae03ccdaf2
parent 2941 51cafd3a8877
child 2943 8f42783f6e38
initial checkin
HierarchicalItemWithLabel.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HierarchicalItemWithLabel.st	Tue Mar 14 14:05:09 2006 +0100
@@ -0,0 +1,54 @@
+"
+ 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:libwidg2' }"
+
+HierarchicalItem subclass:#HierarchicalItemWithLabel
+	instanceVariableNames:'label'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Views-Support'
+!
+
+!HierarchicalItemWithLabel 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.
+"
+! !
+
+!HierarchicalItemWithLabel methodsFor:'accessing'!
+
+label
+    ^ label
+!
+
+label:something
+    "set the value of the instance variable 'label' (automatically generated)"
+
+    label := something.
+! !
+
+!HierarchicalItemWithLabel class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libwidg2/HierarchicalItemWithLabel.st,v 1.1 2006-03-14 13:05:09 cg Exp $'
+! !