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.casetool;
12:
13: import tudresden.ocl.check.types.Type;
14:
15: /**
16: * @deprecated
17: */
18: public class UMLOCLStructuralFeature extends UMLOCLFeature {
19:
20: String name;
21: Type type;
22:
23: public UMLOCLStructuralFeature(String n, Type t) {
24: name = n;
25: type = t;
26: }
27:
28: public String getName() {
29: return name;
30: }
31:
32: public Type getType() {
33: return type;
34: }
35: }
|