stx_libbasic2.st
changeset 1665 07e01525e60b
child 1666 6773ae84542b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/stx_libbasic2.st	Wed Aug 23 11:08:53 2006 +0200
@@ -0,0 +1,174 @@
+"{ Package: 'stx:libbasic2' }"
+
+LibraryDefinition subclass:#stx_libbasic2
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'* Projects *'
+!
+
+
+!stx_libbasic2 class methodsFor:'description'!
+
+classNamesAndAttributes
+    ^ #(
+	"/ <className> or (<className> attributes...)
+	'ActorStream'
+	('AppletalkSocketAddress' #autoload)
+	('Archiver' #unix)
+	('Arrow' #autoload)
+	('ArrowedSpline' #autoload)
+	('BIG5EncodedString' #autoload)
+	('BZip2Stream' #unix)
+	'Base64Coder'
+	('Bezier' #autoload)
+	('Bezier2Segment' #autoload)
+	('BinaryTree' #autoload)
+	'BitArray'
+	'BooleanArray'
+	('CRC32Stream' #autoload)
+	'CacheDictionary'
+	'CacheDictionaryWithFactory'
+	('Circle' #autoload)
+	('CollectingSharedQueueStream' #autoload)
+	'CompressionStream'
+	('CompressionStreamTest' #autoload)
+	('Cons' #autoload)
+	('ConsStream' #autoload)
+	('Curve' #autoload)
+	('DecNetSocketAddress' #autoload)
+	'DirectoryContents'
+	('EllipticalArc' #autoload)
+	('EpsonFX1PrinterStream' #autoload)
+	('ExternalLong' #autoload)
+	'FileSorter'
+	('FileText' #autoload)
+	'FileURI'
+	'FourByteString'
+	'FtpURI'
+	('GBEncodedString' #autoload)
+	('HPLjetIIPrinterStream' #autoload)
+	('HandlerCollection' #autoload)
+	'HierarchicalURI'
+	'HostAddressLookupError'
+	'HostNameLookupError'
+	'HttpURI'
+	'IPSocketAddress'
+	'IPv6SocketAddress'
+	'IntegerArray'
+	('InterestConverterWithParameters' #autoload)
+	('InternalPipeStream' #autoload)
+	'Iterator'
+	'JISEncodedString'
+	('KSCEncodedString' #autoload)
+	('KeywordInContextIndexBuilder' #autoload)
+	('LazyArray' #autoload)
+	('LazyCons' #autoload)
+	('LazyValue' #autoload)
+	('LineSegment' #autoload)
+	'List'
+	'LongIntegerArray'
+	'MappedCollection'
+	('MessageChannel' #autoload)
+	'Monitor'
+	'NameLookupError'
+	('NumberSet' #autoload)
+	('OperationQueue' #autoload)
+	'OrderedDictionary'
+	'OrderedSet'
+	'Polygon'
+	'PostscriptPrinterStream'
+	('PowerSet' #autoload)
+	'PrinterStream'
+	('PrintfScanf' #autoload)
+	'Promise'
+	'Queue'
+	'Random'
+	'RandomGenerator'
+	('RandomParkMiller' #autoload)
+	('RandomTT800' #autoload)
+	'RunArray'
+	('SequenceableCollectionSorter' #autoload)
+	('SerialPort' #win32)
+	'SharedCollection'
+	'SharedQueue'
+	'SignedIntegerArray'
+	'SignedLongIntegerArray'
+	'SignedWordArray'
+	'Singleton'
+	'Socket'
+	'SocketAddress'
+	'SocketAddressInfo'
+	'SoundStream'
+	('Spline' #autoload)
+	('SplittingWriteStream' #autoload)
+	'Stack'
+	'Text'
+	'TextStream'
+	'TimeDuration'
+	'TimedPromise'
+	'TwoByteString'
+	'UDSocketAddress'
+	'URI'
+	'UUID'
+	'UnboxedIntegerArray'
+	'UndoSupport'
+	'Unicode16String'
+	'Unicode32String'
+	'UnitConverter'
+	('UnixPTYStream' #autoload)
+	('ValueLink' #autoload)
+	('VariableArray' #autoload)
+	('VariableString' #autoload)
+	('WinAPIFunction' #autoload)
+	'WordArray'
+	'ZipArchive'
+	('ZipStream' #unix)
+	'stx_libbasic2'
+    )
+!
+
+extensionMethodNames
+    ^ #(
+    )
+! !
+
+!stx_libbasic2 class methodsFor:'description - compilation'!
+
+stcOptimizationOptions
+    ^ '+optspace2 -warnNonStandard'
+
+    "Created: / 23-08-2006 / 11:06:17 / cg"
+! !
+
+!stx_libbasic2 class methodsFor:'description - project information'!
+
+companyName
+    "Return a companyname which will appear in <lib>.rc"
+
+    ^ 'eXept Software AG'
+!
+
+description
+    "Return a description string which will appear in nt.def / bc.def"
+
+    ^ 'Smalltalk/X Class library'
+!
+
+legalCopyright
+    "Return copyright string which will appear in <lib>.rc"
+
+    ^ 'Copyright Claus Gittinger 1988-2006\nCopyright eXept Software AG 1998-2006'
+!
+
+productName
+    "Return a product name which will appear in <lib>.rc"
+
+    ^ 'Smalltalk/X'
+! !
+
+!stx_libbasic2 class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic2/stx_libbasic2.st,v 1.1 2006-08-23 09:08:53 cg Exp $'
+! !