public static final com.sun.satsa.jcrmic.classfile.attributes.JAttribute | create(com.sun.satsa.jcrmic.classfile.constants.JConstantPool cp, int index)Factory method for attribute object creation.
String name = cp.getConstantUtf8(index).getString();
if (name.equals("Exceptions"))
return new JExceptionsAttr(cp);
return new JAttribute(cp);
|