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: //
09: //
10: package de.uka.ilkd.key.proof.init;
11:
12: public interface JMLProofOblInput extends ProofOblInput {
13:
14: /**
15: * Checks if the methods used in the specification that underlies this
16: * JMLProofOblInput are declared with the modifier pure.
17: */
18: boolean checkPurity();
19:
20: /**
21: * Creates program variables section for the problem header.
22: */
23: String createProgramVarsSection();
24:
25: /**
26: * Creates java section for the problem header.
27: */
28: String createJavaSection();
29:
30: /**
31: * Creates the problem header.
32: */
33: String createProblemHeader();
34: }
|