APL/DEV 3.2/TP01/Association/Association.java

32 lines
572 B
Java
Raw Normal View History

2022-10-05 11:07:41 +02:00
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 + "]";
}
}