changed: #version_CVS
authorvrany
Tue, 28 Jun 2011 13:41:46 +0200
changeset 13406 ab78d458b472
parent 13405 13dea24362ff
child 13407 10be0164a8ff
changed: #version_CVS
AbstractSourceFileWriter.st
--- a/AbstractSourceFileWriter.st	Tue Jun 28 13:04:17 2011 +0200
+++ b/AbstractSourceFileWriter.st	Tue Jun 28 13:41:46 2011 +0200
@@ -1,3 +1,14 @@
+"
+ COPYRIGHT (c) 2006 by 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:libbasic' }"
 
 Object subclass:#AbstractSourceFileWriter
@@ -14,6 +25,21 @@
 	privateIn:AbstractSourceFileWriter
 !
 
+!AbstractSourceFileWriter class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2006 by 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.
+"
+! !
 
 !AbstractSourceFileWriter class methodsFor:'signal constants'!
 
@@ -51,6 +77,26 @@
     ^ self subclassResponsibility
 
     "Modified: / 16-08-2009 / 09:59:49 / Jan Vrany <vranyj1@fel.cvut.cz>"
+!
+
+fileOutMethods: methods on:stream
+
+    "Files out a bunch of methods. This is used to file-out extension methods"    
+
+    self subclassResponsibility
+
+    "Modified: / 16-08-2009 / 09:59:49 / Jan Vrany <vranyj1@fel.cvut.cz>"
+    "Created: / 30-12-2009 / 18:34:33 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
+fileOutPackageDefinition:packageId on:stream 
+    "Files out a package definition on the stream, so all subsequent
+     code entities will be placed in that package"
+    
+    self subclassResponsibility
+
+    "Modified: / 16-08-2009 / 09:59:49 / Jan Vrany <vranyj1@fel.cvut.cz>"
+    "Created: / 30-12-2009 / 18:34:33 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !AbstractSourceFileWriter methodsFor:'source writing - comments'!
@@ -141,14 +187,10 @@
 
 !AbstractSourceFileWriter class methodsFor:'documentation'!
 
-version
-    ^ '$Header: /cvs/stx/stx/libbasic/AbstractSourceFileWriter.st,v 1.6 2009-10-08 12:03:57 fm Exp $'
-!
-
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/AbstractSourceFileWriter.st,v 1.6 2009-10-08 12:03:57 fm Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/AbstractSourceFileWriter.st,v 1.7 2011-06-28 11:41:46 vrany Exp $'
 !
 
 version_SVN
-    ^'§Id: AbstractSourceFileWriter.st 10468 2009-08-22 08:34:50Z vranyj1 §'
+    ^ ' Id: AbstractSourceFileWriter.st 10643 2011-06-08 21:53:07Z vranyj1  '
 ! !