Tools__SmalltalkToolbox.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 14 Jun 2016 08:10:12 +0100
branchjv
changeset 16695 a8eda516effa
parent 15950 23be8cf85415
child 17304 3eea1002b141
permissions -rw-r--r--
Use new CmdLineParser when generating initial application startup code. Do not use (old, unmaitained) GetOpt as CmdLineParser has (will have) more features.

"
 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:libtool' }"

"{ NameSpace: Tools }"

GenericToolbox subclass:#SmalltalkToolbox
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Interface-Tools'
!

!SmalltalkToolbox 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.
"
!

documentation
"
    A toolbox for Smalltalk language

    [author:]
        Jan Vrany <jan.vrany@fit.cvut.cz>

    [instance variables:]

    [class variables:]

    [see also:]
        Tools::Toolbox
        Tools::GenericToolbox

"
! !

!SmalltalkToolbox class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libtool/Tools__SmalltalkToolbox.st,v 1.1 2014-02-24 16:08:50 vrany Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/libtool/Tools__SmalltalkToolbox.st,v 1.1 2014-02-24 16:08:50 vrany Exp $'
! !