view src/uk/ac/qmul/eecs/depic/daw/gui/PreferencesPanel.java @ 2:c0412c81d274

Added documentation
author Fiore Martin <f.martin@qmul.ac.uk>
date Thu, 18 Feb 2016 18:35:26 +0000
parents 3074a84ef81e
children
line wrap: on
line source
/*  
 Cross-Modal DAW Prototype - Prototype of a simple Cross-Modal Digital Audio Workstation.

 Copyright (C) 2015  Queen Mary University of London (http://depic.eecs.qmul.ac.uk/)
	
 This program 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.

 This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
*/
package uk.ac.qmul.eecs.depic.daw.gui;

import javax.swing.JPanel;

/**
 * 
 * Abstract panel for exposing configuration parameters.
 * 
 * To be extended by other packages that need to expose configuration parameters. By using this abstraction 
 * this package is not dependent on such packages.
 *
 */
public abstract class PreferencesPanel extends JPanel {
	private static final long serialVersionUID = 1L;

	public abstract void savePrefs();
	
	public abstract String getTitle();
	
	public abstract String [] getPrefsList();
	
}