Files
unicenta-opos/src/main/java/com/unicenta/pos/suppliers/SupplierTicketSelector.java
T
hugh 0282345603 5.0 Source Code
Committing 5.0 Source Code
2023-04-06 18:58:04 +01:00

46 lines
850 B
Java

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.unicenta.pos.suppliers;
import com.unicenta.basic.BasicException;
import java.awt.Component;
import java.awt.event.ActionListener;
/**
*
* @author JG uniCenta - outline/prep for uniCenta mobile + eCommerce connector
*/
public interface SupplierTicketSelector {
/**
*
* @throws BasicException
*/
public void loadSupplierss() 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);
}