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: import de.uka.ilkd.key.casetool.ModelClass;
13:
14: public class CasetoolDLPO extends KeYUserProblemFile {
15:
16: private ModelClass aClRepr;
17:
18: public CasetoolDLPO(ModelClass reprModelCl, java.io.File file) {
19: super (file.getName(), file, null);
20: this .aClRepr = reprModelCl;
21: }
22:
23: /*
24: public String readModel() {
25: if (initConfig==null) {
26: throw new IllegalStateException("KeYFile: InitConfig not set.");
27: }
28: final String[] cus = aClRepr.getClassesInPackage();
29: getKeYJavaASTConverter().readCompilationUnitsAsFiles(cus);
30: return aClRepr.getRootDirectory();
31: }
32: */
33:
34: }
|