StoreSourceCodeManager.st
changeset 1530 72861343b2a2
child 1731 16af565d0676
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/StoreSourceCodeManager.st	Wed Aug 16 11:27:32 2006 +0200
@@ -0,0 +1,76 @@
+"
+ COPYRIGHT (c) 2006 eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
+"{ Package: 'stx:libbasic3' }"
+
+AbstractSourceCodeManager subclass:#StoreSourceCodeManager
+	instanceVariableNames:''
+	classVariableNames:'Verbose'
+	poolDictionaries:''
+	category:'System-SourceCodeManagement'
+!
+
+!StoreSourceCodeManager class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2006 eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
+documentation
+"
+    WARNING:
+        this class is incomplete and provided as a sceletton
+        if CVS is not to be used as a SourceCodeManager.
+        We highly recommend to use CVS.
+
+    SourceCodeManager which accesses sourcecode through a Store Database.
+    This class is part of ongoing development and not yet released for public use.
+"
+! !
+
+!StoreSourceCodeManager class methodsFor:'accessing'!
+
+managerTypeName
+    ^ 'Store DB'
+
+    "Created: / 16-08-2006 / 11:06:09 / cg"
+! !
+
+!StoreSourceCodeManager class methodsFor:'testing'!
+
+isExperimental
+    ^ true
+
+    "Created: / 16-08-2006 / 11:23:09 / cg"
+!
+
+isStore
+    ^ true
+
+    "Created: / 16-08-2006 / 10:59:06 / cg"
+! !
+
+!StoreSourceCodeManager class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic3/StoreSourceCodeManager.st,v 1.1 2006-08-16 09:27:32 cg Exp $'
+! !