Hey all , 
I found a method in qualityBase class name - getQualityMap
but for creating an instance for this class a Pointer must be sent  - 
/** Pointer cast constructor. Invokes {link Pointer#Pointer(Pointer)}. */
public QualityBase(Pointer p) { super(p); }
?how do I create this pointer
need to have all the data like: 
 * param p the other Pointer to reference
 */
public Pointer(final Pointer p) {
    if (p != null) {
        address = p.address;
        position = p.position;
        limit = p.limit;
        capacity = p.capacity;
        if (p.deallocator != null) {
            deallocator = new ProxyDeallocator(this, p);
        }
    }
}
Can someone help me please???
Thanks!!!
ב-יום חמישי, 27 באוקטובר 2022 בשעה 09:21:50 UTC+3, shira Jacobs כתב/ה: