/** * * @author hadeslee */ public class SongInfoDialog extends javax.swing.JDialog {
private SongInfo info; //歌曲信息对象 private File file; //文件对象 private boolean valid; //表示原来这个文件是不是合法的,如果不是,就要重新写入128个字节 /** Creates new form SongInfoDialog */ public SongInfoDialog(java.awt.Frame parent, boolean modal) { super(parent, modal); initComponents(); }
public SongInfoDialog(Dialog parent, boolean modal) { super(parent, modal); initComponents(); }
public SongInfoDialog(Frame parent, boolean modal, File file) { this(parent, modal); this.file = file; init(); }
public SongInfoDialog(Dialog parent, boolean modal, File file) { this(parent, modal); this.file = file; init(); }
(编辑:aniston)
|