FileBasedSourceCodeManager.st
changeset 4224 2e8a71f19f34
parent 4138 4e6d223eb117
child 4308 a1ea61babc77
equal deleted inserted replaced
4223:635b1741716f 4224:2e8a71f19f34
    13 
    13 
    14 "{ NameSpace: Smalltalk }"
    14 "{ NameSpace: Smalltalk }"
    15 
    15 
    16 AbstractSourceCodeManager subclass:#FileBasedSourceCodeManager
    16 AbstractSourceCodeManager subclass:#FileBasedSourceCodeManager
    17 	instanceVariableNames:''
    17 	instanceVariableNames:''
    18 	classVariableNames:'Verbose RepositoryPath ModulePathes'
    18 	classVariableNames:'ModulePathes RepositoryPath Verbose'
    19 	poolDictionaries:''
    19 	poolDictionaries:''
    20 	category:'System-SourceCodeManagement'
    20 	category:'System-SourceCodeManagement'
    21 !
    21 !
    22 
    22 
    23 !FileBasedSourceCodeManager class methodsFor:'documentation'!
    23 !FileBasedSourceCodeManager class methodsFor:'documentation'!
   201     "Modified: / 22-12-2011 / 00:46:29 / cg"
   201     "Modified: / 22-12-2011 / 00:46:29 / cg"
   202 ! !
   202 ! !
   203 
   203 
   204 !FileBasedSourceCodeManager class methodsFor:'source code administration'!
   204 !FileBasedSourceCodeManager class methodsFor:'source code administration'!
   205 
   205 
   206 checkForExistingContainer:fileName inModule:moduleName directory:dirName
   206 checkForExistingContainer:fileName inModule:moduleName directory:packageDirName
   207     ^ self checkForExistingModule:moduleName directory:dirName
   207     "check for a container to exist. Return a boolean result."
       
   208 
       
   209     ^ self checkForExistingModule:moduleName directory:packageDirName
   208 
   210 
   209     "Created: / 21-12-2011 / 17:56:23 / cg"
   211     "Created: / 21-12-2011 / 17:56:23 / cg"
       
   212     "Modified (format): / 24-02-2017 / 11:32:26 / cg"
   210 !
   213 !
   211 
   214 
   212 checkForExistingModule:moduleDir
   215 checkForExistingModule:moduleDir
   213     "check for a package directory to be present"
   216     "check for a package directory to be present"
   214 
   217