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:
11: package de.uka.ilkd.key.rule.soundness;
12:
13: import de.uka.ilkd.key.java.PositionInfo;
14: import de.uka.ilkd.key.java.SourceData;
15: import de.uka.ilkd.key.java.abstraction.ArrayOfKeYJavaType;
16: import de.uka.ilkd.key.logic.ProgramElementName;
17: import de.uka.ilkd.key.rule.MatchConditions;
18:
19: public class ProgramSVSkolemStatement extends ProgramSVSkolem {
20:
21: public ProgramSVSkolemStatement(ProgramElementName p_name,
22: ArrayOfKeYJavaType p_influencingPVTypes, int p_jumpCnt) {
23: super (p_name, p_influencingPVTypes, p_jumpCnt);
24: }
25:
26: public PositionInfo getPositionInfo() {
27: return PositionInfo.UNDEFINED;
28: }
29:
30: public MatchConditions match(SourceData source,
31: MatchConditions matchCond) {
32: // TODO Auto-generated method stub
33: return null;
34: }
35: }
|