Eclipse Java config missing path? Cannot resolve BitMask -
i'm new java in eclipse.
i've built , run hello world application , exploring how add additional variables. i'm trying create bitmask variable i'm getting error: bitmask cannot resoved type.
my main class looks this:
import org.eclipse.core.internal.utils; public class dnamain { public static void main(string[] args) { // todo auto-generated method stub system.out.println("hello world"); bitmask bm = new bitmask(); } }
my assumption have not included specific library can't seem determine 1 or how it.
any appreciated. thanks!
change import statement be:
import org.eclipse.core.internal.utils.bitmask;
in future, if want specific classes, recommend looking @ javadocs. in case class seems eclipse-specific, might need google "javadocs "
Comments
Post a Comment