BackgroundPeriodicalJob.st
changeset 3494 438ec9e27f84
parent 2629 126d804dea78
child 3506 bf90531e8a26
equal deleted inserted replaced
3493:e7c920efe4cc 3494:438ec9e27f84
     1 "{ Package: 'stx:libbasic2' }"
     1 "{ Package: 'stx:libbasic2' }"
     2 
     2 
     3 BackgroundJob subclass:#BackgroundPeriodicalJob
     3 "{ NameSpace: Smalltalk }"
       
     4 
       
     5 AbstractBackgroundJob subclass:#BackgroundPeriodicalJob
     4 	instanceVariableNames:'interval'
     6 	instanceVariableNames:'interval'
     5 	classVariableNames:''
     7 	classVariableNames:''
     6 	poolDictionaries:''
     8 	poolDictionaries:''
     7 	category:'System-Support'
     9 	category:'System-Support'
     8 !
    10 !
    80 ! !
    82 ! !
    81 
    83 
    82 !BackgroundPeriodicalJob class methodsFor:'documentation'!
    84 !BackgroundPeriodicalJob class methodsFor:'documentation'!
    83 
    85 
    84 version
    86 version
    85     ^ '$Header: /cvs/stx/stx/libbasic2/BackgroundPeriodicalJob.st,v 1.1 2011-09-06 12:38:17 vrany Exp $'
    87     ^ '$Header: /cvs/stx/stx/libbasic2/BackgroundPeriodicalJob.st,v 1.2 2015-02-21 10:03:16 vrany Exp $'
    86 !
    88 !
    87 
    89 
    88 version_CVS
    90 version_CVS
    89     ^ '$Header: /cvs/stx/stx/libbasic2/BackgroundPeriodicalJob.st,v 1.1 2011-09-06 12:38:17 vrany Exp $'
    91     ^ '$Header: /cvs/stx/stx/libbasic2/BackgroundPeriodicalJob.st,v 1.2 2015-02-21 10:03:16 vrany Exp $'
    90 ! !
    92 ! !
       
    93