I have this:
package org.ores;
public class Asyncc {
public static Class<Queue> Queue = new Class<Queue>();
}
but I get:
'Class(java.lang.ClassLoader, java.lang.Class)' has private access in 'java.lang.Class'
the Queue class looks like:
package org.ores;
public class Queue {
public Queue(){
}
}
it's in the same package but in a different file. My question is - is there a way to export the Queue class from the Asyncc class? Putting a ref to the Queue class as a static field on Asyncc?