Uses of Interface
org.stanwood.media.store.mp4.IAtom

Packages that use IAtom
org.stanwood.media.cli.manager   
org.stanwood.media.store.mp4   
org.stanwood.media.store.mp4.atomicparsley   
 

Uses of IAtom in org.stanwood.media.cli.manager
 

Methods in org.stanwood.media.cli.manager that return IAtom
protected  IAtom CLIFixSeenDB.hasAtom(java.util.List<IAtom> atoms, java.lang.String atomName)
           
 

Method parameters in org.stanwood.media.cli.manager with type arguments of type IAtom
protected  IAtom CLIFixSeenDB.hasAtom(java.util.List<IAtom> atoms, java.lang.String atomName)
           
 

Uses of IAtom in org.stanwood.media.store.mp4
 

Subinterfaces of IAtom in org.stanwood.media.store.mp4
 interface IAtomNumber
          Should be implemented by atoms of type number
 interface IAtomString
          Should be implemented by atoms of type string
 

Methods in org.stanwood.media.store.mp4 that return IAtom
 IAtom IMP4Manager.createAtom(MP4AtomKey name, boolean value)
          Used to create a atom
 IAtom IMP4Manager.createAtom(MP4AtomKey name, int value)
          Used to create a number atom
 IAtom IMP4Manager.createAtom(MP4AtomKey name, MP4ArtworkType type, int size, byte[] data)
          Used to create a artwork atom
 IAtom IMP4Manager.createAtom(MP4AtomKey name, short number, short total)
          Used to create a range atom
 IAtom IMP4Manager.createAtom(MP4AtomKey name, java.lang.String value)
          Used to create a atom
protected static IAtom MP4ITunesStore.getArtworkAtom(IMP4Manager mp4Manager, java.io.File mp4File, IVideo video)
           
 

Methods in org.stanwood.media.store.mp4 that return types with arguments of type IAtom
 java.util.List<IAtom> IMP4Manager.listAtoms(java.io.File mp4File)
          Used to get a list of atoms in the MP4 file.
 

Method parameters in org.stanwood.media.store.mp4 with type arguments of type IAtom
protected static void MP4ITunesStore.genericAtoms(IMediaFileInfo info, IMP4Manager mp4Manager, java.util.List<IAtom> atoms, java.lang.String flavour)
           
 void IMP4Manager.update(java.io.File mp4File, java.util.List<IAtom> atoms)
          Used to add atoms to a MP4 file.
 

Uses of IAtom in org.stanwood.media.store.mp4.atomicparsley
 

Classes in org.stanwood.media.store.mp4.atomicparsley that implement IAtom
 class AbstractAPAtom
          Base class for atoms
 class APAtomArtwork
          Used to store mp4 artwork atom data
 class APAtomArtworkSummary
          The artwork summary atom.
 class APAtomBoolean
          Used to represent a atomic parsley boolean atom
 class APAtomNumber
          Used to store mp4 number atom data
 class APAtomRange
          Used to store mp4 range atom data
 class APAtomString
          Used to store mp4 string atom data
 

Methods in org.stanwood.media.store.mp4.atomicparsley that return IAtom
 IAtom MP4AtomicParsleyManager.createAtom(MP4AtomKey name, boolean value)
          Used to create a atom
 IAtom MP4AtomicParsleyManager.createAtom(MP4AtomKey name, int value)
          Used to create a number atom
 IAtom MP4AtomicParsleyManager.createAtom(MP4AtomKey name, MP4ArtworkType type, int size, byte[] data)
          Used to create a artwork atom
 IAtom MP4AtomicParsleyManager.createAtom(MP4AtomKey name, short number, short total)
          Used to create a range atom
 IAtom MP4AtomicParsleyManager.createAtom(MP4AtomKey name, java.lang.String value)
          Used to create a atom
 

Methods in org.stanwood.media.store.mp4.atomicparsley that return types with arguments of type IAtom
 java.util.List<IAtom> AtomicParsleyOutputParser.listAtoms()
          Used to list the atoms parsed from the output
 java.util.List<IAtom> MP4AtomicParsleyManager.listAtoms(java.io.File mp4File)
          Used to get a list of atoms in the MP4 file.
 

Method parameters in org.stanwood.media.store.mp4.atomicparsley with type arguments of type IAtom
 void MP4AtomicParsleyManager.update(java.io.File mp4File, java.util.List<IAtom> atoms)
          Used to add atoms to a MP4 file.