org.objectweb.asm.xml
public final class SAXClassAdapter extends Object implements ClassVisitor
See Also: Processor
Constructor Summary | |
---|---|
SAXClassAdapter(ContentHandler h, boolean singleDocument)
Constructs a new {@link SAXClassAdapter SAXClassAdapter} object.
|
Method Summary | |
---|---|
void | visit(int version, int access, String name, String superName, String[] interfaces, String sourceFile) |
void | visitAttribute(Attribute attr) |
void | visitEnd() |
void | visitField(int access, String name, String desc, Object value, Attribute attrs) |
void | visitInnerClass(String name, String outerName, String innerName, int access) |
CodeVisitor | visitMethod(int access, String name, String desc, String[] exceptions, Attribute attrs) |
Parameters: h content handler that will be used to send SAX 2.0 events. singleDocument if true adapter will not produce {@link ContentHandler#startDocument() startDocument()} and {@link ContentHandler#endDocument() endDocument()} events.