SmallSense__Info.st
branchcvs_MAIN
changeset 320 5242593726f0
parent 302 44433b666576
child 381 57ef482699a6
child 853 8664aba7fde1
equal deleted inserted replaced
319:d0117a7b0c44 320:5242593726f0
       
     1 "
       
     2 stx:goodies/smallsense - A productivity plugin for Smalltalk/X IDE
       
     3 Copyright (C) 2013-2014 Jan Vrany
       
     4 
       
     5 This library is free software; you can redistribute it and/or
       
     6 modify it under the terms of the GNU Lesser General Public
       
     7 License as published by the Free Software Foundation; either
       
     8 version 2.1 of the License. 
       
     9 
       
    10 This library is distributed in the hope that it will be useful,
       
    11 but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       
    13 Lesser General Public License for more details.
       
    14 
       
    15 You should have received a copy of the GNU Lesser General Public
       
    16 License along with this library; if not, write to the Free Software
       
    17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
       
    18 "
       
    19 "{ Package: 'stx:goodies/smallsense' }"
       
    20 
       
    21 "{ NameSpace: SmallSense }"
       
    22 
       
    23 Object subclass:#Info
       
    24 	instanceVariableNames:'manager errorneous'
       
    25 	classVariableNames:''
       
    26 	poolDictionaries:''
       
    27 	category:'SmallSense-Smalltalk-Types-Info'
       
    28 !
       
    29 
       
    30 !Info class methodsFor:'documentation'!
       
    31 
       
    32 copyright
       
    33 "
       
    34 stx:goodies/smallsense - A productivity plugin for Smalltalk/X IDE
       
    35 Copyright (C) 2013-2014 Jan Vrany
       
    36 
       
    37 This library is free software; you can redistribute it and/or
       
    38 modify it under the terms of the GNU Lesser General Public
       
    39 License as published by the Free Software Foundation; either
       
    40 version 2.1 of the License. 
       
    41 
       
    42 This library is distributed in the hope that it will be useful,
       
    43 but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    44 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       
    45 Lesser General Public License for more details.
       
    46 
       
    47 You should have received a copy of the GNU Lesser General Public
       
    48 License along with this library; if not, write to the Free Software
       
    49 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
       
    50 "
       
    51 ! !
       
    52 
       
    53 !Info methodsFor:'accessing'!
       
    54 
       
    55 errorneous:something
       
    56     errorneous := something.
       
    57 ! !
       
    58 
       
    59 !Info methodsFor:'testing'!
       
    60 
       
    61 isErrorneous
       
    62     ^ errorneous == true
       
    63 
       
    64     "Created: / 21-11-2014 / 16:37:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    65 ! !
       
    66 
       
    67 !Info class methodsFor:'documentation'!
       
    68 
       
    69 version_HG
       
    70 
       
    71     ^ '$Changeset: <not expanded> $'
       
    72 !
       
    73 
       
    74 version_SVN
       
    75     ^ '$Id$'
       
    76 ! !
       
    77