AbstractSourceCodeManagementSettingsAppl.st
changeset 10057 36e5aa192050
parent 10056 309affc75a8c
child 10144 e32d27a81b87
equal deleted inserted replaced
10056:309affc75a8c 10057:36e5aa192050
       
     1 "
     1  COPYRIGHT (c) 2006 by eXept Software AG
     2  COPYRIGHT (c) 2006 by eXept Software AG
     2               All Rights Reserved
     3 	      All Rights Reserved
     3 
     4 
     4  This software is furnished under a license and may be used
     5  This software is furnished under a license and may be used
     5  only in accordance with the terms of that license and with the
     6  only in accordance with the terms of that license and with the
     6  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     7  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  hereby transferred.
    10  hereby transferred.
    10 "
    11 "
    11 "{ Package: 'stx:libtool' }"
    12 "{ Package: 'stx:libtool' }"
    12 
    13 
    13 AbstractSettingsApplication subclass:#AbstractSourceCodeManagementSettingsAppl
    14 AbstractSettingsApplication subclass:#AbstractSourceCodeManagementSettingsAppl
    14         instanceVariableNames:''
    15 	instanceVariableNames:''
    15         classVariableNames:''
    16 	classVariableNames:''
    16         poolDictionaries:''
    17 	poolDictionaries:''
    17         category:'System-SourceCodeManagement'
    18 	category:'System-SourceCodeManagement'
    18 !
    19 !
    19 
    20 
    20 !AbstractSourceCodeManagementSettingsAppl class methodsFor:'documentation'!
    21 !AbstractSourceCodeManagementSettingsAppl class methodsFor:'documentation'!
    21 
    22 
    22 copyright
    23 copyright
    23 "
    24 "
    24  COPYRIGHT (c) 2006 by eXept Software AG
    25  COPYRIGHT (c) 2006 by eXept Software AG
    25               All Rights Reserved
    26 	      All Rights Reserved
    26 
    27 
    27  This software is furnished under a license and may be used
    28  This software is furnished under a license and may be used
    28  only in accordance with the terms of that license and with the
    29  only in accordance with the terms of that license and with the
    29  inclusion of the above copyright notice.   This software may not
    30  inclusion of the above copyright notice.   This software may not
    30  be provided or otherwise made available to, or used by, any
    31  be provided or otherwise made available to, or used by, any
    38     Abstract superclass of all source-code managers.
    39     Abstract superclass of all source-code managers.
    39 
    40 
    40     These should implement an interface similar to what is found in CVSSourceCodeManager,
    41     These should implement an interface similar to what is found in CVSSourceCodeManager,
    41     providing methods to checkin/out files from a central repository.
    42     providing methods to checkin/out files from a central repository.
    42 
    43 
    43     Not all managers will probably provide the same set of functions; 
    44     Not all managers will probably provide the same set of functions;
    44     time will show, if such an abstraction is possible
    45     time will show, if such an abstraction is possible
    45     (the way source code management systems organize their code is different, some
    46     (the way source code management systems organize their code is different, some
    46     keep individual per-class version numbers (CVS, RCS, Store) others keep an overall
    47     keep individual per-class version numbers (CVS, RCS, Store) others keep an overall
    47     (configuration-) id (SVN).
    48     (configuration-) id (SVN).
    48 "
    49 "
    65 ! !
    66 ! !
    66 
    67 
    67 !AbstractSourceCodeManagementSettingsAppl class methodsFor:'documentation'!
    68 !AbstractSourceCodeManagementSettingsAppl class methodsFor:'documentation'!
    68 
    69 
    69 version_CVS
    70 version_CVS
    70     ^ '$Header: /cvs/stx/stx/libtool/AbstractSourceCodeManagementSettingsAppl.st,v 1.3 2011-07-03 15:11:21 cg Exp $'
    71     ^ '$Header: /cvs/stx/stx/libtool/AbstractSourceCodeManagementSettingsAppl.st,v 1.4 2011-07-03 15:57:24 cg Exp $'
    71 !
    72 !
    72 
    73 
    73 version_SVN
    74 version_SVN
    74     ^ '§Id§'
    75     ^ '§Id§'
    75 ! !
    76 ! !