common/SCMAbstractTask.st
branchcvs_MAIN
changeset 755 ff5c8d7b2bd8
parent 509 f92210d4585b
child 883 94d1dd346100
equal deleted inserted replaced
754:e1b862463fd1 755:ff5c8d7b2bd8
    15 You should have received a copy of the GNU Lesser General Public
    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
    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
    17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
    18 "
    18 "
    19 "{ Package: 'stx:libscm/common' }"
    19 "{ Package: 'stx:libscm/common' }"
       
    20 
       
    21 "{ NameSpace: Smalltalk }"
    20 
    22 
    21 Object subclass:#SCMAbstractTask
    23 Object subclass:#SCMAbstractTask
    22 	instanceVariableNames:'packages classes temporaryWorkingCopy temporaryWorkingCopyRoot'
    24 	instanceVariableNames:'packages classes temporaryWorkingCopy temporaryWorkingCopyRoot'
    23 	classVariableNames:''
    25 	classVariableNames:''
    24 	poolDictionaries:''
    26 	poolDictionaries:''
    57 ! !
    59 ! !
    58 
    60 
    59 !SCMAbstractTask methodsFor:'accessing'!
    61 !SCMAbstractTask methodsFor:'accessing'!
    60 
    62 
    61 branch
    63 branch
    62 
    64     ^ self temporaryWorkingCopy branch
    63     ^self workingCopy branch
       
    64 
    65 
    65     "Created: / 23-03-2009 / 17:16:14 / Jan Vrany <vranyj1@fel.cvut.cz>"
    66     "Created: / 23-03-2009 / 17:16:14 / Jan Vrany <vranyj1@fel.cvut.cz>"
       
    67     "Modified (format): / 31-03-2017 / 18:07:48 / stefan"
    66 !
    68 !
    67 
    69 
    68 classes
    70 classes
    69     ^ classes
    71     ^ classes
    70 !
    72 !
   113 
   115 
   114     "Created: / 26-02-2014 / 22:46:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   116     "Created: / 26-02-2014 / 22:46:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   115 !
   117 !
   116 
   118 
   117 repository
   119 repository
   118 
   120     ^ self temporaryWorkingCopy repository
   119     ^self workingCopy repository
       
   120 
   121 
   121     "Created: / 23-03-2009 / 11:24:36 / Jan Vrany <vranyj1@fel.cvut.cz>"
   122     "Created: / 23-03-2009 / 11:24:36 / Jan Vrany <vranyj1@fel.cvut.cz>"
       
   123     "Modified (format): / 31-03-2017 / 18:07:52 / stefan"
   122 !
   124 !
   123 
   125 
   124 temporaryWorkingCopy
   126 temporaryWorkingCopy
   125     ^ temporaryWorkingCopy
   127     ^ temporaryWorkingCopy
   126 !
   128 !
   241     "Modified: / 30-06-2013 / 12:45:38 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   243     "Modified: / 30-06-2013 / 12:45:38 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   242 ! !
   244 ! !
   243 
   245 
   244 !SCMAbstractTask class methodsFor:'documentation'!
   246 !SCMAbstractTask class methodsFor:'documentation'!
   245 
   247 
       
   248 version
       
   249     ^ '$Header$'
       
   250 !
       
   251 
       
   252 version_CVS
       
   253     ^ '$Header$'
       
   254 !
       
   255 
   246 version_GIT
   256 version_GIT
   247     "Never, ever change this method. Ask JV or CG why"
   257     "Never, ever change this method. Ask JV or CG why"
   248     ^thisContext method mclass theNonMetaclass instVarNamed: #revision
   258     ^thisContext method mclass theNonMetaclass instVarNamed: #revision
   249 !
   259 !
   250 
   260 
   252 
   262 
   253     ^ '$Changeset: <not expanded> $'
   263     ^ '$Changeset: <not expanded> $'
   254 !
   264 !
   255 
   265 
   256 version_SVN
   266 version_SVN
   257     ^ '§Id::                                                                                                                        §'
   267     ^ '$Id$'
   258 ! !
   268 ! !
   259 
   269