/*
* GWTService.java
*
* Created on December 11, 2007, 5:05 PM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package org.yournamehere.client;
import com.google.gwt.user.client.rpc.RemoteService;
import java.util.ArrayList;
/**
*
* @author gw152771
*/
public interface GWTService extends RemoteService {
public ArrayList getManufacturers();
public ArrayList getBrands(String manufacturer);
public ArrayList getModels(String manufacturer, String brand);
}