From 2c230e23ac52420e946a661380ea0276c8adef0e Mon Sep 17 00:00:00 2001 From: paltherr Date: Mon, 14 Apr 2003 15:37:44 +0000 Subject: - Added DefaultTreeFactory.java.tmpl - Added TreeFactory.java.tmpl --- sources/scalac/ast/DefaultTreeFactory.java.tmpl | 22 ++++++++++++++++++++++ sources/scalac/ast/TreeFactory.java.tmpl | 22 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 sources/scalac/ast/DefaultTreeFactory.java.tmpl create mode 100644 sources/scalac/ast/TreeFactory.java.tmpl (limited to 'sources/scalac') 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#} + + //######################################################################## +} -- cgit v1.2.3