common/SCMAbstractFileoutLikeTask.st
changeset 122 f72225c1f433
parent 117 3014c22e2eab
child 131 8986734fe8e2
--- a/common/SCMAbstractFileoutLikeTask.st	Sat Dec 01 02:27:24 2012 +0000
+++ b/common/SCMAbstractFileoutLikeTask.st	Mon Dec 03 16:17:39 2012 +0000
@@ -120,45 +120,6 @@
     suppressExtensions := aBoolean.
 ! !
 
-!SCMAbstractFileoutLikeTask methodsFor:'executing'!
-
-doFileOut
-    "Fileouts everything to the working copy"
-
-    self
-        doUpdateBuildSupportFiles;
-        doRenameContainers;
-        doFileOutPackageClasses;
-        doFileOutPackageExtensions;
-        doAddNewContainers;
-        doRemoveOldContainers.
-
-    "Created: / 10-05-2012 / 17:05:57 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 21-11-2012 / 00:43:00 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-!
-
-doFileOutAll
-
-    self
-        doUpdateCode;
-        doFileOut.
-
-    "Created: / 17-08-2009 / 18:28:18 / Jan Vrany <vranyj1@fel.cvut.cz>"
-    "Modified: / 10-05-2012 / 17:06:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-!
-
-doUpdateCode
-    "Updates project definitions and compiles version/copyright methods"
-
-    self
-        doInitStateVariables;
-        doCompileVersionMethods;
-        doCompileCopyrightMethods;
-        doUpdateProjectDefinition.
-
-    "Created: / 10-05-2012 / 17:04:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-! !
-
 !SCMAbstractFileoutLikeTask methodsFor:'executing - private'!
 
 doAddNewContainers
@@ -262,6 +223,31 @@
     "Modified: / 16-11-2012 / 23:17:39 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
+doFileOut
+    "Fileouts everything to the working copy"
+
+    self
+        doUpdateBuildSupportFiles;
+        doRenameContainers;
+        doFileOutPackageClasses;
+        doFileOutPackageExtensions;
+        doAddNewContainers;
+        doRemoveOldContainers.
+
+    "Created: / 10-05-2012 / 17:05:57 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 21-11-2012 / 00:43:00 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
+doFileOutAll
+
+    self
+        doUpdateCode;
+        doFileOut.
+
+    "Created: / 17-08-2009 / 18:28:18 / Jan Vrany <vranyj1@fel.cvut.cz>"
+    "Modified: / 10-05-2012 / 17:06:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
 doFileOutPackageClasses
     |klasses|
 
@@ -413,6 +399,18 @@
     "Modified: / 01-12-2012 / 00:24:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
+doUpdateCode
+    "Updates project definitions and compiles version/copyright methods"
+
+    self
+        doInitStateVariables;
+        doCompileVersionMethods;
+        doCompileCopyrightMethods;
+        doUpdateProjectDefinition.
+
+    "Created: / 10-05-2012 / 17:04:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
 doUpdateProjectDefinition
     |prjClass|