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: // Copyright (C) 2001-2005 Universitaet Karlsruhe, Germany
09: // Universitaet Koblenz-Landau, Germany
10: // Chalmers University of Technology, Sweden
11: //
12: // The KeY system is protected by the GNU General Public License.
13: // See LICENSE.TXT for details.
14: //
15: //
16:
17: package de.uka.ilkd.key.proof.init;
18:
19: import de.uka.ilkd.key.casetool.ModelMethod;
20:
21: /**
22: * The "PreservesOwnInv" proof obligation.
23: */
24: public class PreservesOwnInvPO extends PreservesInvPO {
25:
26: public PreservesOwnInvPO(ModelMethod modelMethod,
27: InvariantSelectionStrategy invStrategy) {
28: super ("PreservesOwnInv", modelMethod, invStrategy, modelMethod
29: .getContainingClass().getMyClassInvariants());
30: }
31: }
|