compiler/TFilesystemProvider.st
changeset 16 17a2d1d9f205
parent 11 6d39860d0fdb
--- a/compiler/TFilesystemProvider.st	Wed Sep 23 22:21:44 2015 +0100
+++ b/compiler/TFilesystemProvider.st	Fri Sep 25 03:51:15 2015 +0100
@@ -1,3 +1,16 @@
+"
+    Copyright (C) 2015-now Jan Vrany
+
+    This code is not an open-source (yet). You may use this code
+    for your own experiments and projects, given that:
+
+    * all modification to the code will be sent to the
+      original author for inclusion in future releases
+    * this is not used in any commercial software
+
+    This license is provisional and may (will) change in
+    a future.
+"
 "{ Package: 'jv:tea/compiler' }"
 
 "{ NameSpace: Smalltalk }"
@@ -9,6 +22,23 @@
 	category:'Languages-Tea-Compiler-Model-Provider'
 !
 
+!TFilesystemProvider class methodsFor:'documentation'!
+
+copyright
+"
+    Copyright (C) 2015-now Jan Vrany
+
+    This code is not an open-source (yet). You may use this code
+    for your own experiments and projects, given that:
+
+    * all modification to the code will be sent to the
+      original author for inclusion in future releases
+    * this is not used in any commercial software
+
+    This license is provisional and may (will) change in
+    a future.
+"
+! !
 
 !TFilesystemProvider class methodsFor:'instance creation'!
 
@@ -49,6 +79,12 @@
     ^ unit classes detect:[:class | class name = name ] ifNone:[ nil ]
 
     "Created: / 14-09-2015 / 15:10:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
+classpath
+    ^ classpath
+
+    "Created: / 24-09-2015 / 16:45:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !TFilesystemProvider methodsFor:'initialization'!