pButtonarray [x] [row].putClientProperty ("x", new Integer (x));
I'm using a version of java that doesn't have method overloading for putClentProperty
so i have to type new Integer as seen above, and this all works perfectly
now I'm trying to assign a boolean to the array
like so
pButtonarray [x] [row].putClientProperty ("Boolean", new boolean (false));
but i get this error
Invalid ClassType which refers to boolean
What is the correct way to assign a boolean as a client property?