src.org.python.expose.generate.ExposedFieldFinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jython Show documentation
Show all versions of jython Show documentation
Jython is an implementation of the high-level, dynamic, object-oriented
language Python written in 100% Pure Java, and seamlessly integrated with
the Java platform. It thus allows you to run Python on any Java platform.
package org.python.expose.generate;
import org.objectweb.asm.AnnotationVisitor;
import org.objectweb.asm.Attribute;
import org.objectweb.asm.FieldVisitor;
public abstract class ExposedFieldFinder implements FieldVisitor, PyTypes {
private String fieldName;
private FieldVisitor delegate;
private String doc;
public ExposedFieldFinder(String name, FieldVisitor delegate) {
fieldName = name;
this.delegate = delegate;
}
public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
if(EXPOSED_GET.getDescriptor().equals(desc)) {
return new DescriptorVisitor(fieldName) {
@Override
public void handleResult(String name, String doc) {
exposeAsGet(name, doc);
}
};
} else if(EXPOSED_SET.getDescriptor().equals(desc)) {
return new DescriptorVisitor(fieldName) {
@Override
public void handleResult(String name, String doc) {
exposeAsSet(name);
}
};
} else {
return delegate.visitAnnotation(desc, visible);
}
}
public abstract void exposeAsGet(String name, String doc);
public abstract void exposeAsSet(String name);
public void visitAttribute(Attribute attr) {
delegate.visitAttribute(attr);
}
public void visitEnd() {
delegate.visitEnd();
}
}