| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| AbstractLyrics3 |
|
| 1.0;1 |
| 1 | /** | |
| 2 | * @author : Paul Taylor | |
| 3 | * @author : Eric Farng | |
| 4 | * | |
| 5 | * Version @version:$Id: AbstractLyrics3.java,v 1.9 2008/07/21 10:45:49 paultaylor Exp $ | |
| 6 | * | |
| 7 | * MusicTag Copyright (C)2003,2004 | |
| 8 | * | |
| 9 | * This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser | |
| 10 | * General Public License as published by the Free Software Foundation; either version 2.1 of the License, | |
| 11 | * or (at your option) any later version. | |
| 12 | * | |
| 13 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even | |
| 14 | * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |
| 15 | * See the GNU Lesser General Public License for more details. | |
| 16 | * | |
| 17 | * You should have received a copy of the GNU Lesser General Public License along with this library; if not, | |
| 18 | * you can get a copy from http://www.opensource.org/licenses/lgpl-license.php or write to the Free Software | |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 20 | * | |
| 21 | * Description: | |
| 22 | */ | |
| 23 | package org.jaudiotagger.tag.lyrics3; | |
| 24 | ||
| 25 | import org.jaudiotagger.tag.id3.AbstractTag; | |
| 26 | import org.jaudiotagger.tag.id3.ID3v1Tag; | |
| 27 | ||
| 28 | import java.io.IOException; | |
| 29 | import java.io.RandomAccessFile; | |
| 30 | ||
| 31 | ||
| 32 | public abstract class AbstractLyrics3 extends AbstractTag | |
| 33 | { | |
| 34 | public AbstractLyrics3() | |
| 35 | 0 | { |
| 36 | 0 | } |
| 37 | ||
| 38 | public AbstractLyrics3(AbstractLyrics3 copyObject) | |
| 39 | { | |
| 40 | 0 | super(copyObject); |
| 41 | 0 | } |
| 42 | ||
| 43 | /** | |
| 44 | * @param file | |
| 45 | * @throws IOException | |
| 46 | */ | |
| 47 | public void delete(RandomAccessFile file) throws IOException | |
| 48 | { | |
| 49 | long filePointer; | |
| 50 | 0 | ID3v1Tag id3v1tag = new ID3v1Tag(); |
| 51 | ||
| 52 | ||
| 53 | 0 | } |
| 54 | } |