What is the name of the inner class?
import javax.swing.*;
import java.awt.*;
//class
public class MP3ManagerTest{
//mian
public static void main(String [] args){
MP3Manager manager = new MP3Manager();
manager.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
manager.setSize(650,650);
manager.setVisible(true);
}
}
and where is the inner class?