Uses of Class
org.qtunes.db.FieldMap

Packages that use FieldMap
org.qtunes.db The "db" package defines the API for the database, which stores the tracks and playlists 
org.qtunes.db.spi.simple An implementation of the "database" package. 
org.qtunes.ff The "ff" package groups the set of all file formats parsed by QTunes - MP3, MP4 etc. 
org.qtunes.ff.spi.mp3 The "ff.spi.mp3" package reads and write the MP3 File Format, including providing an AudioInputStream 
org.qtunes.ff.spi.mp4 The "ff.spi.mp4" package reads (and will one day write) the MP4 file format. 
 

Uses of FieldMap in org.qtunes.db
 

Methods in org.qtunes.db with parameters of type FieldMap
 Track Database.create(FieldMap map)
          Create a new Track entry.
 java.lang.Object Matcher.getKey(FieldMap map)
          Get the key that can be used to uniquely identify a track with the specified fields
 void FieldMap.putAll(FieldMap fieldmap)
           
 void Track.update(FieldMap changes)
          Update the fields on this Track.
 void Database.updateTrack(int tracknumber, FieldMap changes)
          Update the fields on the specified Track.
 

Uses of FieldMap in org.qtunes.db.spi.simple
 

Methods in org.qtunes.db.spi.simple with parameters of type FieldMap
 Track DatabaseImpl.create(FieldMap map)
          Create a new Track entry.
 java.lang.Object FilenameMatcher.getKey(FieldMap map)
           
 void DatabaseImpl.updateTrack(int tracknumber, FieldMap changes)
           
 

Uses of FieldMap in org.qtunes.ff
 

Methods in org.qtunes.ff that return FieldMap
abstract  FieldMap TrackReader.read(java.io.File file)
          Load and parse the file and return a FieldMap with its fields
 

Methods in org.qtunes.ff with parameters of type FieldMap
abstract  boolean TrackWriter.write(java.io.File file, FieldMap changes)
          Update a file directly - can be used by utility classes (eg tagger package) to update files without a database.
abstract  void TrackWriter.write(Track track, FieldMap changes)
          Update the track
 

Uses of FieldMap in org.qtunes.ff.spi.mp3
 

Methods in org.qtunes.ff.spi.mp3 that return FieldMap
 FieldMap MP3Handler.read(java.io.File file)
           
 

Methods in org.qtunes.ff.spi.mp3 with parameters of type FieldMap
 boolean MP3Handler.write(java.io.File infile, FieldMap fields)
           
 void MP3Handler.write(Track track, FieldMap changes)
           
 

Uses of FieldMap in org.qtunes.ff.spi.mp4
 

Methods in org.qtunes.ff.spi.mp4 that return FieldMap
 FieldMap MP4Handler.read(java.io.File file)