First commit

This commit is contained in:
Alessandro Ferro
2023-07-22 10:44:36 +02:00
parent b3ad4a0882
commit dde958babd
58 changed files with 3723 additions and 0 deletions

View File

@ -0,0 +1,7 @@
package views.interfaces;
public interface IQueueFrame {
public void setVisible(boolean visible);
int addRow(String source, String destination, String operation, int percentage);
void updateRow(int rowIndex, int percentage);
}