A B C D E F G H I J K L M N O P R S T U V W X Y

I

id - Variable in class pgbennett.id3.FrameAttributes
 
ID3Exception - Exception in pgbennett.id3
A top-level exception for the library.
ID3Exception() - Constructor for exception pgbennett.id3.ID3Exception
Creates an ID3Exception with a default message
ID3Exception(String) - Constructor for exception pgbennett.id3.ID3Exception
Creates an ID3Exception with a specified message
ID3FieldDataException - Exception in pgbennett.id3
An exception that is thrown when invalid data is set in an ID3 tag.
Version History: 1.3.1 - 2002.1023 by gruni -Made sourcecode compliant to the Sun Coding Conventions 1.3 - 2002.0318 by helliker -Inherits from ID3Exception now. 1.2 - 2001.1019 by helliker -All set for release.
ID3FieldDataException() - Constructor for exception pgbennett.id3.ID3FieldDataException
Create an ID3FieldDataException with a default message
ID3FieldDataException(String) - Constructor for exception pgbennett.id3.ID3FieldDataException
Create an ID3FieldDataException with the specified message
ID3Tag - Interface in pgbennett.id3
A common interface for ID3Tag objects so they can easily communicate with each other.
Version History: 1.2.1 - 2002.1023 by gruni -Made sourcecode compliant to the Sun Coding Conventions 1.2 - 2002.0127 by helliker -Added getBytes method. 1.1 - 2002/01/13 by helliker -Initial version
ID3V1_ONLY - Static variable in class pgbennett.id3.MP3File
Write and read from ID3v1 tags only.
id3v1Exists() - Method in class pgbennett.id3.MP3File
Returns true if an id3v1 tag currently exists.
ID3v1Tag - Class in pgbennett.id3
This class reads and writes id3v1.1 tags from/to files.
ID3v1Tag(File) - Constructor for class pgbennett.id3.ID3v1Tag
Create an id3v1tag from the file specified.
ID3V2_ONLY - Static variable in class pgbennett.id3.MP3File
Write and read from ID3v2 tags only.
id3v2Exists() - Method in class pgbennett.id3.MP3File
Returns true if an id3v2 tag currently exists.
ID3v2ExtendedHeader - Class in pgbennett.id3
If the id3v2 tag has an extended header, this class will read/write the information contained within it.
ID3v2ExtendedHeader(File, int, boolean) - Constructor for class pgbennett.id3.ID3v2ExtendedHeader
Create an extended header object from the file passed.
ID3v2Footer - Class in pgbennett.id3
This class implements and id3v2 footer which is essentially the same as an id3v2 header but occurs at the end of the tag and is optional.
ID3v2Footer(File, int) - Constructor for class pgbennett.id3.ID3v2Footer
Creates and id3v2 footer.
ID3v2FormatException - Exception in pgbennett.id3
This exception is thrown when an data in an id3v2 tag violates the id3v2 standards.
Version History:2002.1023 by gruni -Made sourcecode compliant to the Sun Coding Conventions 1.3 - 2002.0318 by helliker -Inherits from ID3Exception now 1.2 - 2001.1019 by helliker All set for release.
ID3v2FormatException() - Constructor for exception pgbennett.id3.ID3v2FormatException
Create an ID3v2FormatException with a default message
ID3v2FormatException(String) - Constructor for exception pgbennett.id3.ID3v2FormatException
Create an ID3v2FormatException with a specified message
ID3v2Frame - Class in pgbennett.id3
This class holds the information found in an id3v2 frame.
ID3v2Frame(String, byte[], byte[], int) - Constructor for class pgbennett.id3.ID3v2Frame
Create an ID3v2Frame with a specified id, a byte array containing the frame header flags, and a byte array containing the data for this frame.
ID3v2Frame(String, byte[]) - Constructor for class pgbennett.id3.ID3v2Frame
Create and ID3v2 frame with the specified id and data.
ID3v2Frame(ID3v2Picture) - Constructor for class pgbennett.id3.ID3v2Frame
Create and ID3v2 frame with the specified id and data.
ID3v2Frame(String, String, String, String) - Constructor for class pgbennett.id3.ID3v2Frame
 
ID3v2Frame(String, byte[], boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean) - Constructor for class pgbennett.id3.ID3v2Frame
Create an ID3v2Frame with the specified id, data, and flags set.
ID3v2Frames - Class in pgbennett.id3
This class is a collection that is used to hold the ID3v2Frames.
Version History 1.3.1 - 2002.1021 by gruni -Made Sourcecode compliant to the Sun CodingConventions 1.3 - 2002.0113 by helliker -Ignore empty frames when calculating length and getting bytes to save space.
ID3v2Frames() - Constructor for class pgbennett.id3.ID3v2Frames
 
ID3v2Header - Class in pgbennett.id3
This class reads all the information in the header of an id3v2 tag.
ID3v2Header(File) - Constructor for class pgbennett.id3.ID3v2Header
Create an id3v2header linked to the file passed as a parameter.
ID3v2Header(File, boolean) - Constructor for class pgbennett.id3.ID3v2Header
 
ID3v2Picture - Class in pgbennett.id3
This class holds the information found in an id3v2 APIC frame.
ID3v2Picture() - Constructor for class pgbennett.id3.ID3v2Picture
 
ID3v2Tag - Class in pgbennett.id3
Description: This class reads and writes id3v2 tags from a file.
Version History 1.11.1 - 2002.1023 by gruni -Made Sourcecode compliant to the Sun CodingConventions 1.11 - 2002.0127 by helliker -The getBytes method is public to adhere to the ID3Tag interface. 1.10 - 2002.0125 by helliker -Uses RandomAccessFile.readInt method to read ints. 1.9 - 2002.0125 by helliker -Writes tag correctly if the 1st mpeg frame is corrupt. -Fixed infinite loop in padding calculation. 1.8 - 2002.0124 by helliker -Throws an exception with an invalid frame size. 1.7 - 2002.0113 by helliker -Implements new ID3Tag interface. -Optimized new padding calculation for writing. 1.6 - 2001.1204 by helliker -Major revisions to size and padding calculations. -Fixes to write and remove methods. 1.5 - 2001.1129 by helliker -Fixed file handle leaks 1.4 - 2001.1110 by helliker -Removed the getPaddingBytes method because it was not needed. 1.3 - 2001.1024 by helliker -The padding size is updated before writing a tag, not during. -Created a method to update the padding size. 1.2 - 2001.1019 by helliker -All set for release.
ID3v2Tag(File, long) - Constructor for class pgbennett.id3.ID3v2Tag
Create an id3v2 tag bound to the file provided as a parameter.
ID3v2Tag(File, long, boolean) - Constructor for class pgbennett.id3.ID3v2Tag
 
ImageFileFilter - Class in pgbennett.jampal
 
ImageFileFilter() - Constructor for class pgbennett.jampal.ImageFileFilter
 
ImageTransferHandler - Class in pgbennett.jampal
 
importData(JComponent, Transferable) - Method in class pgbennett.jampal.ImageTransferHandler
 
importData(JComponent, Transferable) - Method in class pgbennett.jampal.TableTransferHandler
 
init(File, boolean) - Method in class pgbennett.id3.ID3v2Header
 
init(File, int) - Method in class pgbennett.id3.MP3File
 
init(File, int, int) - Method in class pgbennett.id3.MP3File
 
init() - Method in class pgbennett.speech.CepstralSpeaker
 
init() - Method in class pgbennett.speech.ESpeakSpeaker
 
init() - Method in class pgbennett.speech.FreeTTSSpeaker
 
init() - Method in class pgbennett.speech.Speaker
 
init() - Method in interface pgbennett.speech.SpeechInterface
 
INITIAL_KEY - Static variable in class pgbennett.id3.ID3v2Frames
Description of the Field
initialProperties - Static variable in class pgbennett.jampal.Jampal
 
INTERNET_RADIO_STATION_NAME - Static variable in class pgbennett.id3.ID3v2Frames
Description of the Field
INTERNET_RADIO_STATION_OWNER - Static variable in class pgbennett.id3.ID3v2Frames
Description of the Field
INVOLVED_PEOPLE - Static variable in class pgbennett.id3.ID3v2Frames
Description of the Field
isCopyrighted() - Method in class pgbennett.id3.MPEGAudioFrameHeader
Returns true if the audio is copyrighted
isDataFlavorSupported(DataFlavor) - Method in class pgbennett.jampal.TrackTransferable
 
isEmpty() - Method in class pgbennett.id3.ID3v2Frame
Returns true if there is no data in the frame.
isMP3() - Method in class pgbennett.id3.MP3File
Returns true if this file is an mp3.
isMP3() - Method in class pgbennett.id3.MPEGAudioFrameHeader
Returns true if the file passed to the constructor is an mp3 (MPEG layer III).
isMPEGCopyrighted() - Method in class pgbennett.id3.MP3File
Returns true if this mpeg is copyrighted.
isMPEGOriginal() - Method in class pgbennett.id3.MP3File
Returns true if this mpeg is the original.
isMPEGPrivate() - Method in class pgbennett.id3.MP3File
Returns true if the private bit is set in this mpeg.
isMPEGProtected() - Method in class pgbennett.id3.MP3File
Returns true if this mpeg is protected by CRC.
isOpening - Static variable in class pgbennett.jampal.MainFrame
 
isOriginal() - Method in class pgbennett.id3.MPEGAudioFrameHeader
Returns true if this is the original media
isProtected() - Method in class pgbennett.id3.MPEGAudioFrameHeader
Returns true if this mpeg is protected by CRC
ISRC - Static variable in class pgbennett.id3.ID3v2Frames
Description of the Field
isVBR() - Method in class pgbennett.id3.MP3File
Returns true if this mp3 is a variable bitrate file.
isVBR() - Method in class pgbennett.id3.MPEGAudioFrameHeader
Returns true if this mpeg is encoded in VBR
italicCheckBox - Variable in class pgbennett.utility.FontChooser
 
itemStateChanged(ItemEvent) - Method in class pgbennett.jampal.TrackEditor
 

A B C D E F G H I J K L M N O P R S T U V W X Y