Mirror of the JODE repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
jode/jode/jode/type/UnknownSubType.java

22 lines
477 B

package jode;
import sun.tools.java.Type;
public class UnknownSubType extends UnknownType {
Type elemType;
public UnknownSubType(Type type) {
super(103, "<");
elemType = type;
}
public Type getElementType()
{
return elemType;
}
public String typeString(String string, boolean flag1, boolean flag2)
{
return "<superclass of "+
String.valueOf(elemType.typeString(string, flag1, flag2))+">";
}
}