5.0 Source Code

Committing 5.0 Source Code
This commit is contained in:
2023-04-06 18:58:04 +01:00
parent 0f3ede77fa
commit 0282345603
1680 changed files with 241310 additions and 0 deletions
@@ -0,0 +1,46 @@
/*
* 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);
}