mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
戻り値の型変更
This commit is contained in:
parent
3930ec6d9c
commit
fb2ba1e6e5
|
@ -5,17 +5,19 @@ import java.util.ArrayList;
|
|||
import one.nem.lacerta.model.ListItem;
|
||||
import one.nem.lacerta.model.ListItemType;
|
||||
|
||||
import one.nem.lacerta.model.LibraryItemList;
|
||||
|
||||
public interface LacertaLibrary {
|
||||
|
||||
// Get History
|
||||
|
||||
ArrayList<ListItem> getRecentDocument(int limit);
|
||||
ArrayList<ListItem> getRecentDocument(int limit, int offset);
|
||||
ArrayList<ListItem> getRecentDocument(int limit, int offset, ListItemType type);
|
||||
LibraryItemList getRecentDocument(int limit);
|
||||
LibraryItemList getRecentDocument(int limit, int offset);
|
||||
LibraryItemList getRecentDocument(int limit, int offset, ListItemType type);
|
||||
|
||||
// Get List
|
||||
|
||||
ArrayList<ListItem> getDocumentList(int limit);
|
||||
LibraryItemList getDocumentList(int limit);
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user