HierarchicalItemWithLabelAndIconAndValue.st
changeset 2944 4eb59e38eb2e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HierarchicalItemWithLabelAndIconAndValue.st	Tue Mar 14 14:09:48 2006 +0100
@@ -0,0 +1,52 @@
+"
+ 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' }"
+
+HierarchicalItemWithLabelAndIcon subclass:#HierarchicalItemWithLabelAndIconAndValue
+	instanceVariableNames:'value'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Views-Support'
+!
+
+!HierarchicalItemWithLabelAndIconAndValue 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.
+"
+! !
+
+!HierarchicalItemWithLabelAndIconAndValue methodsFor:'accessing'!
+
+value
+    ^ value
+!
+
+value:something
+    value := something.
+! !
+
+!HierarchicalItemWithLabelAndIconAndValue class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libwidg2/HierarchicalItemWithLabelAndIconAndValue.st,v 1.1 2006-03-14 13:09:48 cg Exp $'
+! !