summaryrefslogtreecommitdiffstats
path: root/songdbj/entagged/audioformats/generic/TagField.java
diff options
context:
space:
mode:
Diffstat (limited to 'songdbj/entagged/audioformats/generic/TagField.java')
-rw-r--r--songdbj/entagged/audioformats/generic/TagField.java43
1 files changed, 0 insertions, 43 deletions
diff --git a/songdbj/entagged/audioformats/generic/TagField.java b/songdbj/entagged/audioformats/generic/TagField.java
deleted file mode 100644
index 435bec8b19..0000000000
--- a/songdbj/entagged/audioformats/generic/TagField.java
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * ******************************************************************** **
- * Copyright notice **
- * ** **
- * (c) 2003 Entagged Developpement Team **
- * http://www.sourceforge.net/projects/entagged **
- * ** **
- * All rights reserved **
- * ** **
- * This script is part of the Entagged project. The Entagged **
- * project 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 2 of the License, or **
- * (at your option) any later version. **
- * ** **
- * The GNU General Public License can be found at **
- * http://www.gnu.org/copyleft/gpl.html. **
- * ** **
- * This copyright notice MUST APPEAR in all copies of the file! **
- * ********************************************************************
- */
-package entagged.audioformats.generic;
-
-import java.io.UnsupportedEncodingException;
-
-public interface TagField {
-
- public String getId();
-
- public byte[] getRawContent() throws UnsupportedEncodingException;
-
- public boolean isBinary();
-
- public void isBinary(boolean b);
-
- public boolean isCommon();
-
- public boolean isEmpty();
-
- public String toString();
-
- public void copyContent(TagField field);
-} \ No newline at end of file