/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.openbravo.pos.customers; import com.openbravo.basic.BasicException; import java.awt.Component; import java.awt.event.ActionListener; /** * * @author JG uniCenta - outline/prep for uniCenta mobile + eCommerce connector */ public interface TicketSelector { /** * * @throws BasicException */ public void loadCustomers() throws BasicException; /** * * @param value */ public void setComponentEnabled(boolean value); /** * * @return */ public Component getComponent(); /** * * @param l */ public void addActionListener(ActionListener l); /** * * @param l */ public void removeActionListener(ActionListener l); }