renamed folders

This commit is contained in:
Louis Heredero 2024-12-10 14:46:16 +01:00
parent 6111228c02
commit 237c35c6f7
Signed by: HEL
GPG Key ID: 8D83DE470F8544E7
24 changed files with 24 additions and 24 deletions

View File

@ -1,4 +1,4 @@
package exercicses.ex_a;
package exercises.ex_a;
public class HelloRunnable implements Runnable {
@Override

View File

@ -1,4 +1,4 @@
package exercicses.ex_a;
package exercises.ex_a;
public class HelloThread extends Thread {
@Override

View File

@ -1,4 +1,4 @@
package exercicses.ex_a;
package exercises.ex_a;
public class TestingSimpleThreads {
public static void main(String[] args) {

View File

@ -1,4 +1,4 @@
package exercicses.ex_b;
package exercises.ex_b;
public class SleepMessages implements Runnable {
public String[] song = {

View File

@ -1,4 +1,4 @@
package exercicses.ex_b;
package exercises.ex_b;
public class TestingSleep {
public static void main(String[] args) {

View File

@ -1,4 +1,4 @@
package exercicses.ex_c;
package exercises.ex_c;
public class SleepMessages implements Runnable {
public String[] song = {

View File

@ -1,4 +1,4 @@
package exercicses.ex_c;
package exercises.ex_c;
public class TestingSleep {
public static void main(String[] args) throws InterruptedException {

View File

@ -1,4 +1,4 @@
package exercicses.ex_d;
package exercises.ex_d;
import java.util.Stack;

View File

@ -1,4 +1,4 @@
package exercicses.ex_d;
package exercises.ex_d;
import java.util.Stack;

View File

@ -1,4 +1,4 @@
package exercicses.ex_d;
package exercises.ex_d;
import java.util.Stack;

View File

@ -1,4 +1,4 @@
package exercicses.ex_d_bis;
package exercises.ex_d_bis;
public class StepThread extends Thread {
private int i;

View File

@ -1,4 +1,4 @@
package exercicses.ex_d_bis;
package exercises.ex_d_bis;
public class TestStepThreads {
public static void main(String[] args) {

View File

@ -1,4 +1,4 @@
package exercicses.ex_e;
package exercises.ex_e;
public class Account {
private int balance;

View File

@ -1,4 +1,4 @@
package exercicses.ex_e;
package exercises.ex_e;
public class Customer implements Runnable {
private String name;

View File

@ -1,4 +1,4 @@
package exercicses.ex_e;
package exercises.ex_e;
public class TestingThreadInterferences {
public static void main(String[] args) {

View File

@ -1,4 +1,4 @@
package exercicses.ex_f;
package exercises.ex_f;
public class Account {
private int balance;

View File

@ -1,4 +1,4 @@
package exercicses.ex_f;
package exercises.ex_f;
public class Customer implements Runnable {
private String name;

View File

@ -1,4 +1,4 @@
package exercicses.ex_f;
package exercises.ex_f;
public class TestingThreadInterferences {
public static void main(String[] args) {

View File

@ -1,4 +1,4 @@
package exercicses.ex_g;
package exercises.ex_g;
public class Account {
private int balance;

View File

@ -1,4 +1,4 @@
package exercicses.ex_g;
package exercises.ex_g;
public class BankEmployee implements Runnable {
private String name;

View File

@ -1,4 +1,4 @@
package exercicses.ex_g;
package exercises.ex_g;
public class TestingSynchronizedStatements {
public static void main(String[] args) {

View File

@ -1,4 +1,4 @@
package exercicses.ex_h;
package exercises.ex_h1;
public class TestThreadWithDeadlock {
public static Object Lock1 = new Object();

View File

@ -1,4 +1,4 @@
package exercicses.ex_i;
package exercises.ex_i;
public class Employee extends Thread {
private String name;

View File

@ -1,4 +1,4 @@
package exercicses.ex_i;
package exercises.ex_i;
public class TestingStarvation {
public static void main(String[] args) {