Click here to Skip to main content
15,891,431 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
 LinkedList SongList=new LinkedList();
jbtDisplay.addActionListener(new ActionListener(){
         public void actionPerformed(ActionEvent e){
                           disp.setText("");
            for(int index =1; index <= SongList.getLength(); index++){
                disp.append("Entry number\t:" + index + "\n" + SongList.getEntry(index) + "\n\n");
            }
                updateEntry();
         }
       });
Posted
Comments
Prasad Khandekar 25-Mar-13 3:38am    
Can you elaborate the problem. The error description and stack trace will really help.
Sneh_Blose 25-Mar-13 3:43am    
i'v imported java.util.LinkedList and Netbeans seems to be underlining my getLength and getEntry

HI,

You could use the
C#
SongList.size();in place of getlength()and 
        SongList.get(index) for getEntry() and see if it resolves the issue and serves the purpose
 
Share this answer
 
HI

You could use the following code and see if it serves the purpose


C#
LinkedList SongList=new LinkedList();
jbtDisplay.addActionListener(new ActionListener(){
         public void actionPerformed(ActionEvent e){
                           disp.setText("");
            for(int index =1; index <= SongList.size();index++){
                disp.append("Entry number\t:" + index + "\n" + SongList.get(index) + "\n\n");
            }
                updateEntry();
         }
       });.
 
Share this answer
 
Is it giving you and IndexOutOfBoundsException ? If that so try the next thing: index<songlist.size()><= it means that the program will try to access an extra element.


Best regards.
 
Share this answer
 
Comments
Sudhakar Shinde 6-May-13 7:50am    
You can not ask query in the solution section. You have to use Imrpeove Question or put it as a comment.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900