/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package sbusca;
import java.util.*;

/**
 *
 * @author ledlima
 */
public class TesteBusca {
    public static void main(String arg[]){
        MotorBusca mb1= new MotorBusca();
        mb1.setKeyword("tecnologia");
        List sites = mb1.execute();
        System.out.print(sites);
    }

}
