summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
Diffstat (limited to 'sources')
-rw-r--r--sources/scalac/ast/DefaultTreeFactory.java.tmpl22
-rw-r--r--sources/scalac/ast/TreeFactory.java.tmpl22
2 files changed, 44 insertions, 0 deletions
diff --git a/sources/scalac/ast/DefaultTreeFactory.java.tmpl b/sources/scalac/ast/DefaultTreeFactory.java.tmpl
new file mode 100644
index 0000000000..48fa7760fa
--- /dev/null
+++ b/sources/scalac/ast/DefaultTreeFactory.java.tmpl
@@ -0,0 +1,22 @@
+/* ____ ____ ____ ____ ______ *\
+** / __// __ \/ __// __ \/ ____/ SOcos COmpiles Scala **
+** __\_ \/ /_/ / /__/ /_/ /\_ \ (c) 2002, LAMP/EPFL **
+** /_____/\____/\___/\____/____/ **
+\* */
+
+// $Id$
+
+package scalac.ast;
+
+{#Imports#}
+
+/** The default tree factory */
+public class DefaultTreeFactory implements TreeFactory {
+
+ //########################################################################
+ // Public Methods
+
+ {#TreeMethods#}
+
+ //########################################################################
+}
diff --git a/sources/scalac/ast/TreeFactory.java.tmpl b/sources/scalac/ast/TreeFactory.java.tmpl
new file mode 100644
index 0000000000..3b46970e77
--- /dev/null
+++ b/sources/scalac/ast/TreeFactory.java.tmpl
@@ -0,0 +1,22 @@
+/* ____ ____ ____ ____ ______ *\
+** / __// __ \/ __// __ \/ ____/ SOcos COmpiles Scala **
+** __\_ \/ /_/ / /__/ /_/ /\_ \ (c) 2002, LAMP/EPFL **
+** /_____/\____/\___/\____/____/ **
+\* */
+
+// $Id$
+
+package scalac.ast;
+
+{#Imports#}
+
+/** This interface describes a tree factory */
+public interface TreeFactory {
+
+ //########################################################################
+ // Public Methods
+
+ {#TreeMethods#}
+
+ //########################################################################
+}