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.java.abstraction.KeYJavaType;
17: import de.uka.ilkd.key.logic.ProgramElementName;
18: import de.uka.ilkd.key.rule.MatchConditions;
19:
20: public class ProgramSVSkolemExpression extends ProgramSVSkolem {
21:
22: private final KeYJavaType type;
23:
24: public ProgramSVSkolemExpression(ProgramElementName p_name,
25: KeYJavaType p_type,
26: ArrayOfKeYJavaType p_influencingPVTypes, int p_jumpCnt) {
27: super (p_name, p_influencingPVTypes, p_jumpCnt);
28: type = p_type;
29: }
30:
31: public KeYJavaType getKeYJavaType() {
32: return type;
33: }
34:
35: public PositionInfo getPositionInfo() {
36: return PositionInfo.UNDEFINED;
37: }
38:
39: public MatchConditions match(SourceData source,
40: MatchConditions matchCond) {
41: // TODO Auto-generated method stub
42: return null;
43: }
44: }
|