I could use a few pointers, new to Java.
I am using a function that returns a "Reader" type. Documented here:
http://docs.oracle.com/javase/6/docs/api/java/io/Reader.html?is-external=true
Here are my lines of code:
Reader test = null;
test = WWIO.openReader("http://google.com");
The second line is okay, but the first puts an error on "Reader" saying
Reader cannot be resolved to a type
Why is that? I have
import java.lang.Object;
Which I don't even think is necessary? Why doesn't the compiler understand the type?