|
|
|
@ -5,26 +5,22 @@ |
|
|
|
|
*/ |
|
|
|
|
package moe.nekojimi.musicsearcher.providers; |
|
|
|
|
|
|
|
|
|
import com.amihaiemil.eoyaml.YamlMapping; |
|
|
|
|
import java.util.List; |
|
|
|
|
import moe.nekojimi.musicsearcher.Result; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* |
|
|
|
|
* @author jim |
|
|
|
|
*/ |
|
|
|
|
public class ApiSearcher extends Searcher |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
public ApiSearcher(YamlMapping yaml) |
|
|
|
|
{ |
|
|
|
|
super(yaml); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
protected List<Result> doSearch(String query) |
|
|
|
|
{ |
|
|
|
|
throw new UnsupportedOperationException("NYI"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
//public class ApiSearcher extends Searcher
|
|
|
|
|
//{
|
|
|
|
|
//
|
|
|
|
|
// public ApiSearcher(YamlMapping yaml)
|
|
|
|
|
// {
|
|
|
|
|
// super(yaml);
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// @Override
|
|
|
|
|
// protected List<Result> doSearch(String query)
|
|
|
|
|
// {
|
|
|
|
|
// throw new UnsupportedOperationException("NYI");
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
//}
|
|
|
|
|