summaryrefslogtreecommitdiff
path: root/songdbj/javazoom/spi/PropertiesContainer.java
diff options
context:
space:
mode:
Diffstat (limited to 'songdbj/javazoom/spi/PropertiesContainer.java')
-rw-r--r--songdbj/javazoom/spi/PropertiesContainer.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/songdbj/javazoom/spi/PropertiesContainer.java b/songdbj/javazoom/spi/PropertiesContainer.java
new file mode 100644
index 0000000000..27ed85f904
--- /dev/null
+++ b/songdbj/javazoom/spi/PropertiesContainer.java
@@ -0,0 +1,31 @@
1/*
2 * PropertiesContainer.
3 *
4 * JavaZOOM : mp3spi@javazoom.net
5 * http://www.javazoom.net
6 *
7 *-----------------------------------------------------------------------
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Library General Public License as published
10 * by the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Library General Public License for more details.
17 *
18 * You should have received a copy of the GNU Library General Public
19 * License along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 *----------------------------------------------------------------------
22 */
23
24package javazoom.spi;
25
26import java.util.Map;
27
28public interface PropertiesContainer
29{
30 public Map properties();
31}