
com.github.obase.mysql.asm.SimpleArrayAnnotationVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of obase-mysql Show documentation
Show all versions of obase-mysql Show documentation
A very simple/efficient Mysql Client Framework
The newest version!
package com.github.obase.mysql.asm;
import java.util.List;
import org.springframework.asm.AnnotationVisitor;
import org.springframework.asm.SpringAsmInfo;
class SimpleArrayAnnotationVisitor extends AnnotationVisitor {
final List data;
public SimpleArrayAnnotationVisitor(List data) {
super(SpringAsmInfo.ASM_VERSION);
this.data = data;
}
@SuppressWarnings("unchecked")
@Override
public void visit(String name, Object value) {
data.add((T) value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy