initial checkin
authorClaus Gittinger <cg@exept.de>
Fri, 11 Sep 2009 14:55:29 +0200
changeset 11910 a0958b306417
parent 11909 3bc1c7c5eb7b
child 11911 e6b56400ecd6
initial checkin
InlineObjectClassDescription.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/InlineObjectClassDescription.st	Fri Sep 11 14:55:29 2009 +0200
@@ -0,0 +1,51 @@
+"
+ COPYRIGHT (c) 2009 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:libbasic' }"
+
+ClassDescription subclass:#InlineObjectClassDescription
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Programming-Support'
+!
+
+!InlineObjectClassDescription class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2009 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.
+"
+! !
+
+!InlineObjectClassDescription methodsFor:'queries'!
+
+name
+    "although inline objects have no name, we return something
+     useful here - there are many places (inspectors) where
+     a classes name is asked for."
+
+    ^ #'Inline Object'
+! !
+
+!InlineObjectClassDescription class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/InlineObjectClassDescription.st,v 1.1 2009-09-11 12:55:29 cg Exp $'
+! !