View Single Post
  #1 (permalink)  
Old 10-30-2007, 10:08 PM
po0oker po0oker is offline
Member
 
Join Date: Oct 2007
Posts: 11
po0oker is on a distinguished road
cannot find symbol class error
hi there ,
i am creating a min class that links several classes and i am doing the following



Code:
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();
^
Reply With Quote
Sponsored Links