FileDocCategorySizeDatePackage
AbstractID3Tag.javaAPI DocJaudiotagger 2.0.42954Tue Jun 07 15:51:36 BST 2011org.jaudiotagger.tag.id3

AbstractID3Tag

public abstract class AbstractID3Tag extends AbstractTag
This is the abstract base class for all ID3 tags.
author
: Eric Farng
author
: Paul Taylor

Fields Summary
public static Logger
logger
protected static final String
TAG_RELEASE
private String
loggingFilename
Constructors Summary
public AbstractID3Tag()


     
    
    
public AbstractID3Tag(AbstractID3Tag copyObject)

        super(copyObject);
    
Methods Summary
public java.lang.StringgetIdentifier()
Get full version


            
      
    
        return TAG_RELEASE + getRelease() + "." + getMajorVersion() + "." + getRevision();
    
protected java.lang.StringgetLoggingFilename()
Retrieve the logging filename to be used in debugging

return
logging filename to be used in debugging

        return loggingFilename;
    
public abstract bytegetMajorVersion()
Retrieve the Major Version

return

public abstract bytegetRelease()
Retrieve the Release

return

public abstract bytegetRevision()
Retrieve the Revision

return

protected voidsetLoggingFilename(java.lang.String loggingFilename)
Set logging filename when construct tag for read from file

param
loggingFilename

        this.loggingFilename = loggingFilename;