java - Static global variable cannot be resolved -


i have generated stub in trying access static global variable defined in jar file shown below.

generatedsetterhelperimpl(cancelwaybill, cancelwaybill$0, 0, org.apache.xmlbeans.impl.values.xmlobjectbase.kind_setterhelper_singleton); 

here gives error "cannot resolved" kind_setterhelper_singleton variable. when decompiled xmlobjectbase.class file found kind_setterhelper_singleton defined. in eclipse f3 xmlobjectbase not show kind_setterhelper_singleton.

enter image description here

snippet of decompiled file(xmlobjectbase.class) shown below.

public abstract class xmlobjectbase implements typestoreuser, serializable, xmlobject, simplevalue {     public static final short major_version_number = 1;     public static final short minor_version_number = 1;     public static final short kind_setterhelper_singleton = 1;     public static final short kind_setterhelper_arrayitem = 2;     public static final validationcontext _voorvc; 

well, able access minor_version_number variable.

any idea on this. 


Comments

Popular posts from this blog

android - Automated my builds -

how to proxy from https to http with lighttpd -

javascript - jQuery get link id -