CstInterfaceMethodRefpublic final class CstInterfaceMethodRef extends CstBaseMethodRef Constants of type CONSTANT_InterfaceMethodref_info . |
Fields Summary |
---|
private CstMethodRef | methodRefnull-ok; normal {@link CstMethodRef} that corresponds to this
instance, if calculated |
Constructors Summary |
---|
public CstInterfaceMethodRef(CstType definingClass, CstNat nat)Constructs an instance.
super(definingClass, nat);
methodRef = null;
|
Methods Summary |
---|
public CstMethodRef | toMethodRef()Gets a normal (non-interface) {@link CstMethodRef} that corresponds to
this instance.
if (methodRef == null) {
methodRef = new CstMethodRef(getDefiningClass(), getNat());
}
return methodRef;
| public java.lang.String | typeName(){@inheritDoc}
return "ifaceMethod";
|
|