hi there ,
i am creating a min class that links several classes and i am doing the following
package javazoom.jl.decoder;
public class Main {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Decoder d = new Decoder();
Header h = new Header();
}
}
i am saving all the classes in the same folder , and i am having this error twice with each line that i creat an instance for a class
the errors are
(1)
cannot find symbol
symbol : class Decoder
location: class javazoom.jl.decoder.Main
Decoder d = new Decoder();
^
(2)
cannot find symbol
symbol : class Decoder
location: class javazoom.jl.decoder.Main
Decoder d = new Decoder();
^