/** Register the name of a panel property which has just been modified. */ @Override public void unsavedChange(String name) { for (JFileSeqPanel panel : pFileSeqPanels.values()) panel.setApplyItemEnabled(true); super.unsavedChange(name); }
/** * Perform any operations needed after an panel operation has completed. * * <p>This method is run by the Swing Event thread. */ @Override public void postPanelOp() { for (JFileSeqPanel panel : pFileSeqPanels.values()) panel.setApplyItemEnabled(false); super.postPanelOp(); }