AbstractSourceCodeManagementSettingsAppl.st
changeset 10056 309affc75a8c
parent 10030 486922eb13e0
child 10057 36e5aa192050
equal deleted inserted replaced
10055:88034a467573 10056:309affc75a8c
     1 "
     1  COPYRIGHT (c) 2006 by eXept Software AG
     2  COPYRIGHT (c) 2011 by eXept Software AG
       
     3               All Rights Reserved
     2               All Rights Reserved
     4 
     3 
     5  This software is furnished under a license and may be used
     4  This software is furnished under a license and may be used
     6  only in accordance with the terms of that license and with the
     5  only in accordance with the terms of that license and with the
     7  inclusion of the above copyright notice.   This software may not
     6  inclusion of the above copyright notice.   This software may not
    10  hereby transferred.
     9  hereby transferred.
    11 "
    10 "
    12 "{ Package: 'stx:libtool' }"
    11 "{ Package: 'stx:libtool' }"
    13 
    12 
    14 AbstractSettingsApplication subclass:#AbstractSourceCodeManagementSettingsAppl
    13 AbstractSettingsApplication subclass:#AbstractSourceCodeManagementSettingsAppl
    15 	instanceVariableNames:''
    14         instanceVariableNames:''
    16 	classVariableNames:''
    15         classVariableNames:''
    17 	poolDictionaries:''
    16         poolDictionaries:''
    18 	category:'System-SourceCodeManagement'
    17         category:'System-SourceCodeManagement'
    19 !
    18 !
    20 
    19 
    21 !AbstractSourceCodeManagementSettingsAppl class methodsFor:'documentation'!
    20 !AbstractSourceCodeManagementSettingsAppl class methodsFor:'documentation'!
    22 
    21 
    23 copyright
    22 copyright
    24 "
    23 "
    25  COPYRIGHT (c) 2011 by eXept Software AG
    24  COPYRIGHT (c) 2006 by eXept Software AG
    26               All Rights Reserved
    25               All Rights Reserved
    27 
    26 
    28  This software is furnished under a license and may be used
    27  This software is furnished under a license and may be used
    29  only in accordance with the terms of that license and with the
    28  only in accordance with the terms of that license and with the
    30  inclusion of the above copyright notice.   This software may not
    29  inclusion of the above copyright notice.   This software may not
    31  be provided or otherwise made available to, or used by, any
    30  be provided or otherwise made available to, or used by, any
    32  other person.  No title to or ownership of the software is
    31  other person.  No title to or ownership of the software is
    33  hereby transferred.
    32  hereby transferred.
       
    33 "
       
    34 !
       
    35 
       
    36 documentation
       
    37 "
       
    38     Abstract superclass of all source-code managers.
       
    39 
       
    40     These should implement an interface similar to what is found in CVSSourceCodeManager,
       
    41     providing methods to checkin/out files from a central repository.
       
    42 
       
    43     Not all managers will probably provide the same set of functions; 
       
    44     time will show, if such an abstraction is possible
       
    45     (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     (configuration-) id (SVN).
    34 "
    48 "
    35 ! !
    49 ! !
    36 
    50 
    37 !AbstractSourceCodeManagementSettingsAppl class methodsFor:'queries'!
    51 !AbstractSourceCodeManagementSettingsAppl class methodsFor:'queries'!
    38 
    52 
    51 ! !
    65 ! !
    52 
    66 
    53 !AbstractSourceCodeManagementSettingsAppl class methodsFor:'documentation'!
    67 !AbstractSourceCodeManagementSettingsAppl class methodsFor:'documentation'!
    54 
    68 
    55 version_CVS
    69 version_CVS
    56     ^ '$Header: /cvs/stx/stx/libtool/AbstractSourceCodeManagementSettingsAppl.st,v 1.2 2011-07-01 14:59:51 cg Exp $'
    70     ^ '$Header: /cvs/stx/stx/libtool/AbstractSourceCodeManagementSettingsAppl.st,v 1.3 2011-07-03 15:11:21 cg Exp $'
    57 !
    71 !
    58 
    72 
    59 version_SVN
    73 version_SVN
    60     ^ '§Id§'
    74     ^ '§Id§'
    61 ! !
    75 ! !