Hi, I'm using JaxmeJS and am having trouble adding (static) fields to interfaces. It looks like the JavaField class can't handle interfaces. Specifically, in version 0.5.2, JavaField.java at line 82:
if (pTarget.isInterface()) {
return;
}
Shouldn't this be
if (pTarget.isInterface() && !this.isStatic()) {
return;
}
Thanks,
Adam
