uk.co.modularaudio.componentdesigner.mainframe.actions.DumpSampleCacheAction.java Source code

Java tutorial

Introduction

Here is the source code for uk.co.modularaudio.componentdesigner.mainframe.actions.DumpSampleCacheAction.java

Source

/**
 *
 * Copyright (C) 2015 - Daniel Hams, Modular Audio Limited
 *                      daniel.hams@gmail.com
 *
 * Mad is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Mad is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Mad.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

package uk.co.modularaudio.componentdesigner.mainframe.actions;

import java.awt.event.ActionEvent;

import javax.swing.AbstractAction;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import uk.co.modularaudio.componentdesigner.controller.front.ComponentDesignerFrontController;
import uk.co.modularaudio.util.exception.DatastoreException;

public class DumpSampleCacheAction extends AbstractAction {
    private static Log log = LogFactory.getLog(DumpSampleCacheAction.class.getName());
    /**
     *
     */
    private static final long serialVersionUID = -8447845406158954693L;
    private final ComponentDesignerFrontController fc;

    public DumpSampleCacheAction(final ComponentDesignerFrontController fc) {
        this.fc = fc;
        this.putValue(NAME, "Dump Sample Cache To Console");
    }

    @Override
    public void actionPerformed(final ActionEvent e) {
        try {
            fc.dumpSampleCache();
        } catch (final DatastoreException ex) {
            if (log.isErrorEnabled()) {
                log.error("Error executing dump sample cache: " + ex.toString(), ex);
            }
        }
    }
}