12345678910111213141516171819202122232425 |
- /**********************************************************************/
- /* Interface Method Reference class for j2cps */
- /* */
- /* (c) copyright QUT, John Gough 2000-2012, John Gough, 2012-2017 */
- /**********************************************************************/
- package j2cps;
- public class InterfaceMethodRef extends Reference {
- public InterfaceMethodRef(ConstantPool thisCp, int classIndex, int ntIndex) {
- super(thisCp,classIndex,ntIndex);
- }
- public String getIntMethName() {
- return (classRef.GetName() + "." + name + type);
- }
- @Override
- public String toString() {
- this.Resolve();
- return ("<InterfaceMethReference> Class " + classIndex +
- " NameAndType " + nameAndTypeIndex);
- }
- }
|