generated from Nekojimi/JavaMavenTemplate
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
718 B
33 lines
718 B
![]()
4 years ago
|
/*
|
||
|
* To change this license header, choose License Headers in Project Properties.
|
||
|
* To change this template file, choose Tools | Templates
|
||
|
* and open the template in the editor.
|
||
|
*/
|
||
|
package moe.nekojimi.musicsearcher.providers;
|
||
|
|
||
|
import java.util.List;
|
||
|
import java.util.Set;
|
||
|
import moe.nekojimi.musicsearcher.Result;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author jim
|
||
|
*/
|
||
|
public class MetaSearcher extends Searcher
|
||
|
{
|
||
|
|
||
|
private final Set<Searcher> searchers;
|
||
|
|
||
|
public MetaSearcher()
|
||
|
{
|
||
|
super("meta");
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public List<Result> search(String query)
|
||
|
{
|
||
|
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
|
||
|
}
|
||
|
|
||
|
}
|