|
@@ -6,6 +6,7 @@
|
|
|
|
|
|
package de.nplusc.izc.izpl.plugins.editor;
|
|
|
|
|
|
+import de.nplusc.izc.iZpl.API.PlayListFile;
|
|
|
import de.nplusc.izc.iZpl.API.SinglePlayListItem;
|
|
|
import de.nplusc.izc.tools.IOtools.FileTK;
|
|
|
import java.util.Collection;
|
|
@@ -113,6 +114,13 @@ public class EditorUICommon extends javax.swing.JFrame
|
|
|
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
|
|
|
|
|
|
btnSave.setText("Save");
|
|
|
+ btnSave.addActionListener(new java.awt.event.ActionListener()
|
|
|
+ {
|
|
|
+ public void actionPerformed(java.awt.event.ActionEvent evt)
|
|
|
+ {
|
|
|
+ btnSaveActionPerformed(evt);
|
|
|
+ }
|
|
|
+ });
|
|
|
|
|
|
btnLoad.setText("Load");
|
|
|
btnLoad.addActionListener(new java.awt.event.ActionListener()
|
|
@@ -158,6 +166,11 @@ public class EditorUICommon extends javax.swing.JFrame
|
|
|
// TODO add your handling code here:
|
|
|
}//GEN-LAST:event_btnLoadActionPerformed
|
|
|
|
|
|
+ private void btnSaveActionPerformed(java.awt.event.ActionEvent evt)//GEN-FIRST:event_btnSaveActionPerformed
|
|
|
+ {//GEN-HEADEREND:event_btnSaveActionPerformed
|
|
|
+ e.saveAll();
|
|
|
+ }//GEN-LAST:event_btnSaveActionPerformed
|
|
|
+
|
|
|
|
|
|
|
|
|
|