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.
-
AUDIO
- Audio File Type
-
file
- The actual file, this is loaded by the MediaLoader
-
fileName
- The filename (including path) for the media file
-
GRAPHIC
- Graphic File type
-
type
- The type of media that is being loaded
-
MediaRecord()
- Default constructor does nothing
-
MediaRecord(String, int)
- Constructor initializes the values of the Media record
GRAPHIC
public static final int GRAPHIC
- Graphic File type
AUDIO
public static final int AUDIO
- Audio File Type
fileName
public String fileName
- The filename (including path) for the media file
file
public Object file
- The actual file, this is loaded by the MediaLoader
type
public int type
- The type of media that is being loaded
MediaRecord
public MediaRecord()
- Default constructor does nothing
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