mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
インタフェースの戻り値を修正
This commit is contained in:
parent
bf385b952c
commit
1d24467c09
|
@ -1,11 +1,13 @@
|
|||
package one.nem.lacerta.data;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
import one.nem.lacerta.model.ListItem;
|
||||
|
||||
public interface LacertaSearch {
|
||||
|
||||
ListItem autoSearch(String query, int limit);
|
||||
ArrayList<ListItem> autoSearch(String query, int limit);
|
||||
|
||||
ListItem autoSearch(String query, int limit, int offset);
|
||||
ArrayList<ListItem> autoSearch(String query, int limit, int offset);
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user