mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +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.ListItem;
|
||||||
import one.nem.lacerta.model.ListItemType;
|
import one.nem.lacerta.model.ListItemType;
|
||||||
|
|
||||||
|
import one.nem.lacerta.model.LibraryItemList;
|
||||||
|
|
||||||
public interface LacertaLibrary {
|
public interface LacertaLibrary {
|
||||||
|
|
||||||
// Get History
|
// Get History
|
||||||
|
|
||||||
ArrayList<ListItem> getRecentDocument(int limit);
|
LibraryItemList getRecentDocument(int limit);
|
||||||
ArrayList<ListItem> getRecentDocument(int limit, int offset);
|
LibraryItemList getRecentDocument(int limit, int offset);
|
||||||
ArrayList<ListItem> getRecentDocument(int limit, int offset, ListItemType type);
|
LibraryItemList getRecentDocument(int limit, int offset, ListItemType type);
|
||||||
|
|
||||||
// Get List
|
// Get List
|
||||||
|
|
||||||
ArrayList<ListItem> getDocumentList(int limit);
|
LibraryItemList getDocumentList(int limit);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user