528529530531532533534535536537538539
ConstantPool cp = clazz.getConstantPool(); List l = clazz.getInterfaces(); String[] iNames = new String[l.size()]; for (int i = 0; i < iNames.length; i++) { Interface iFace = (Interface)l.get(i); iNames[i] = iFace.getName(); } return iNames; }