From 40bfc79948f15db4e2562aaa810260d128068d86 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Martin=20Pl=C3=BCmicke?= <pl@dhbw.de>
Date: Tue, 10 Mar 2015 22:48:29 +0100
Subject: [PATCH] ObjectType als Supertype von RefType, GTV und TPH eingefuegt,
 einige Fehler muessen noch geloest werden

---
 .../syntaxtree/type/FreshExtendsWildcardType.java         | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/de/dhbwstuttgart/syntaxtree/type/FreshExtendsWildcardType.java b/src/de/dhbwstuttgart/syntaxtree/type/FreshExtendsWildcardType.java
index eda214ec..1a5c2447 100755
--- a/src/de/dhbwstuttgart/syntaxtree/type/FreshExtendsWildcardType.java
+++ b/src/de/dhbwstuttgart/syntaxtree/type/FreshExtendsWildcardType.java
@@ -4,13 +4,13 @@ import de.dhbwstuttgart.syntaxtree.SyntaxTreeNode;
 
 public class FreshExtendsWildcardType extends FreshWildcardType implements IMatchable {
 	
-	private Type extendsBoundType;
+	private ObjectType extendsBoundType;
 	
 	/**
 	* Author: Arne L�dtke<br/>
 	* Standard Konstruktor f�r eine FreshExtendsWildcard
 	*/
-	public FreshExtendsWildcardType(Type extendsBound,SyntaxTreeNode parent ,int offset)
+	public FreshExtendsWildcardType(ObjectType extendsBound,SyntaxTreeNode parent ,int offset)
 	{
 		super(parent,offset);
 		this.extendsBoundType = extendsBound;
@@ -20,7 +20,7 @@ public class FreshExtendsWildcardType extends FreshWildcardType implements IMatc
 	* Author: Arne L�dtke<br/>
 	* Privater Konstruktor f�r clone
 	*/
-	private FreshExtendsWildcardType(Type extendsBound ,SyntaxTreeNode parent,int offset, String name)
+	private FreshExtendsWildcardType(ObjectType extendsBound ,SyntaxTreeNode parent,int offset, String name)
 	{
 		super(parent,offset,name);
 		this.extendsBoundType = extendsBound;
@@ -53,7 +53,7 @@ public class FreshExtendsWildcardType extends FreshWildcardType implements IMatc
 	* Author: Arne L�dtke<br/>
 	* Gibt die Grenze der Wildcard zur�ck
 	*/
-	public Type get_ExtendsBound()
+	public ObjectType get_ExtendsBound()
 	{
 		return extendsBoundType;
 	}