All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class taxman.MediaRecord

java.lang.Object
   |
   +----taxman.MediaRecord

public class MediaRecord
extends Object
This is the record for the MediaLoader Design set. This design set allows a program to download media features as a separate thread while recieving updates on the progress periodically.


Variable Index

 o AUDIO
Audio File Type
 o file
The actual file, this is loaded by the MediaLoader
 o fileName
The filename (including path) for the media file
 o GRAPHIC
Graphic File type
 o type
The type of media that is being loaded

Constructor Index

 o MediaRecord()
Default constructor does nothing
 o MediaRecord(String, int)
Constructor initializes the values of the Media record

Variables

 o GRAPHIC
 public static final int GRAPHIC
Graphic File type

 o AUDIO
 public static final int AUDIO
Audio File Type

 o fileName
 public String fileName
The filename (including path) for the media file

 o file
 public Object file
The actual file, this is loaded by the MediaLoader

 o type
 public int type
The type of media that is being loaded

Constructors

 o MediaRecord
 public MediaRecord()
Default constructor does nothing

 o MediaRecord
 public MediaRecord(String FileName,
                    int Type)
Constructor initializes the values of the Media record

Parameters:
FileName - The path and filename of the media file
Type - The type of media represented in this record. Valid values are: MediaRecord.GRAPHIC or MediaRecord.AUDIO

All Packages  Class Hierarchy  This Package  Previous  Next  Index