01: // This file is part of KeY - Integrated Deductive Software Design
02: // Copyright (C) 2001-2007 Universitaet Karlsruhe, Germany
03: // Universitaet Koblenz-Landau, Germany
04: // Chalmers University of Technology, Sweden
05: //
06: // The KeY system is protected by the GNU General Public License.
07: // See LICENSE.TXT for details.
08: package de.uka.ilkd.key.proof;
09:
10: /**
11: * interface to be implemented by builders returning a
12: * goal chooser
13: */
14: public interface GoalChooserBuilder {
15:
16: /** returns a new goal chooser */
17: IGoalChooser create();
18:
19: /** returns a clone of this goal chooser */
20: GoalChooserBuilder copy();
21:
22: /** returns the name of the goal chooser */
23: String name();
24: }
|