com.tffenterprises.music.tag.id3v2.frame
Interface KeyedFrame

All Known Implementing Classes:
APICFrame, CommentFrame, TXXXFrame

public interface KeyedFrame

A "Keyed Frame" is an ID3v2 frame type that can exist in multiple instances in a single ID3v2 tag, and whose instances are can be told apart by their unique "description" fields.

Version:
1.0d1 $Date: 2002/10/11 00:57:30 $
Author:
Guillaume Lessard

Method Summary
 java.lang.String getDescription()
          Returns a content description or identifier for this frame.
 boolean isOfRepeatableType()
          Returns true, since a frame type represented by the KeyedFrame interface must be able to exist in multiple instances.
 

Method Detail

getDescription

java.lang.String getDescription()
Returns a content description or identifier for this frame. The returned string must be unique among all frames of the same type (frame ID), and the frame's isRepeatable() method must return true.

Returns:
a description/identifier for this frame.

isOfRepeatableType

boolean isOfRepeatableType()
Returns true, since a frame type represented by the KeyedFrame interface must be able to exist in multiple instances.

Returns:
true