forked from JavaTX/JavaCompilerCore
ObjectType als Supertype von RefType, GTV und TPH eingefuegt, einige Fehler muessen noch geloest werden
This commit is contained in:
parent
6a47dfaf58
commit
40bfc79948
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user