15 lines
313 B
Java
15 lines
313 B
Java
package com.dt.iTunesController;
|
|
|
|
/**
|
|
* Specifies the kind of playlist printout.
|
|
* @author <a href="mailto:steve@dot-totally.co.uk">Steve Eyre</a>
|
|
* @version 0.2
|
|
*/
|
|
public enum ITPlaylistPrintKind {
|
|
|
|
ITPlaylistPrintKindPlaylist,
|
|
ITPlaylistPrintKindAlbumlist,
|
|
ITPlaylistPrintKindInsert;
|
|
|
|
}
|