experiments/JavaIncrementalCompiler.st
branchdevelopment
changeset 1901 02f4c2d0cebc
parent 1898 51de40865b71
parent 1895 2d30e588124c
child 1902 7edd54d4c29a
--- a/experiments/JavaIncrementalCompiler.st	Sun Dec 16 17:23:16 2012 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,105 +0,0 @@
-"
- Copyright (c) 2010-2011 Jan Vrany, Jan Kurs & Marcel Hlopko,
-                         SWING Research Group, Czech Technical University 
-                         in Prague
-
- Permission is hereby granted, free of charge, to any person
- obtaining a copy of this software and associated documentation
- files (the 'Software'), to deal in the Software without
- restriction, including without limitation the rights to use,
- copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the
- Software is furnished to do so, subject to the following
- conditions:
-
- The above copyright notice and this permission notice shall be
- included in all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- OTHER DEALINGS IN THE SOFTWARE.
-"
-"{ Package: 'stx:libjava/experiments' }"
-
-Object subclass:#JavaIncrementalCompiler
-	instanceVariableNames:'javaClass'
-	classVariableNames:''
-	poolDictionaries:''
-	category:'Languages-Java-Support-Compiling'
-!
-
-!JavaIncrementalCompiler class methodsFor:'documentation'!
-
-copyright
-"
- Copyright (c) 2010-2011 Jan Vrany, Jan Kurs & Marcel Hlopko,
-                         SWING Research Group, Czech Technical University 
-                         in Prague
-
- Permission is hereby granted, free of charge, to any person
- obtaining a copy of this software and associated documentation
- files (the 'Software'), to deal in the Software without
- restriction, including without limitation the rights to use,
- copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the
- Software is furnished to do so, subject to the following
- conditions:
-
- The above copyright notice and this permission notice shall be
- included in all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- OTHER DEALINGS IN THE SOFTWARE.
-
-"
-!
-
-history
-
-    "Created: #addMethod: / 08-12-2012 / 18:18:02 / Marcel Hlopko <marcel.hlopko@fit.cvut.cz>"
-! !
-
-!JavaIncrementalCompiler class methodsFor:'instance creation'!
-
-for: aJavaClass
-^ self new for: aJavaClass.
-
-    "Created: / 08-12-2012 / 18:16:08 / Marcel Hlopko <marcel.hlopko@fit.cvut.cz>"
-! !
-
-!JavaIncrementalCompiler methodsFor:'initialization'!
-
-for: aJavaClass 
-    javaClass := aJavaClass.
-
-    "Created: / 08-12-2012 / 18:16:38 / Marcel Hlopko <marcel.hlopko@fit.cvut.cz>"
-! !
-
-!JavaIncrementalCompiler methodsFor:'methods'!
-
-addMethod: methodSource
-
-    "Created: / 08-12-2012 / 18:18:02 / Marcel Hlopko <marcel.hlopko@fit.cvut.cz>"
-! !
-
-!JavaIncrementalCompiler class methodsFor:'documentation'!
-
-version_HG
-
-    ^ '$Changeset: <not expanded> $'
-!
-
-version_SVN
-    ^ '§Id::                                                                                                                        §'
-! !