Modifier and Type | Method | Description |
---|---|---|
Album |
Application.getAlbum(int index) |
All user created albums in the library, in no specific order.
|
Album |
Application.getAlbum(Id id) |
All user created albums in the library, in no specific order.
|
Album |
Folder.getAlbum(int index) |
All albums contained in this folder.
|
Album |
Folder.getAlbum(Id id) |
All albums contained in this folder.
|
default Album[] |
Application.getAlbums() |
All user created albums in the library, in no specific order.
|
Album[] |
Application.getAlbums(String filter) |
All user created albums in the library, in no specific order.
|
default Album[] |
Folder.getAlbums() |
All albums contained in this folder.
|
Album[] |
Folder.getAlbums(String filter) |
All albums contained in this folder.
|
Album |
Application.getFavoritesAlbum() |
Favorited media items album.
|
Album |
Application.getLastImportAlbum() |
Last import album.
|
Album |
Application.getRecentlyDeletedAlbum() |
The set of recently deleted media items.
|
Album |
Application.make(TypeClass theClassOfTheNewObjectAllowedValuesAreAlbumOrFolder,
String theNameOfTheNewObject,
Folder theParentFolderForTheNewObject) |
Create a new object.
|
Modifier and Type | Method | Description |
---|---|---|
void |
Application.add(MediaItem[] theListOfMediaItemsToAdd,
Album theAlbumToAddTo) |
Add media items to an album.
|
void |
Application.delete(Album theAlbumOrFolderToDelete) |
Delete an object.
|
MediaItem[] |
Application.import_(JaplScriptFile[] theListOfFilesToCopy,
Album theAlbumToImportInto,
boolean skipDuplicateCheckingAndImportEverythingDefaultsToFalse) |
Import files into the library.
|