Hi, I am getting the following 2 errors when using the following piece of code in 1 of my class files.
Impl.java:24: cannot resolve symbol symbol : class Data location: class TextHandlerImpl Data[] items = new Data[MAX]; ^ Impl.java:24: cannot resolve symbol symbol : class Data location: class TextHandlerImpl Data[] items = new Data[MAX]; ^ and my code here is
public String[] getTextLines(File file) { final int MAX = 100; Data[] items = new Data[MAX]; StringTokenizer tokenizer; String line, name;