DEV 3.2 ; TP01

This commit is contained in:
2022-10-05 11:07:41 +02:00
parent 8f86f3798f
commit 9bca200351
30 changed files with 383 additions and 1 deletions

View File

@@ -0,0 +1,31 @@
public class Association<T> {
private T element;
private int frequency;
public Association(T e, int f) {
this.element = e;
this.frequency = f;
}
public void setElement(T e) {
this.element = e;
}
public T getElement() {
return this.element;
}
public void setFrequency(int f) {
this.frequency = f;
}
public int getFrequency() {
return this.frequency;
}
@Override
public String toString() {
return "[" + this.element + ", " + this.frequency + "]";
}
}