ID3Tagpublic abstract class ID3Tag extends Object implements ID3Visitable
Fields Summary |
---|
private static boolean | s_bUseStrictIndication of whether invalid frames read from a file should generate an exception (strict),
or be ignored (non-strict). |
Constructors Summary |
---|
public ID3Tag()Constructor.
|
Methods Summary |
---|
public abstract java.lang.String | toString()Represent a tag as string for debugging purposes.
| public static void | useStrict(boolean bUseStrict)Set whether strict mode should be used or not (default non-strict). When reading tags from a file, in strict
mode any invalid frames will genarate an exception. In non-strict mode, any invalid frames will simply
be ignored.
s_bUseStrict = bUseStrict;
| public static boolean | usingStrict()Check whether strict mode is currently set or not.
return s_bUseStrict;
|
|