package cf1;

public class Weight implements Comparable<Weight> {
	private int weight;

	public Weight(int weight) {
		this.weight = weight;
	}
	
	public void incWeight() {
		weight++;
	}
	
	public int weight() { // l'assesseur n'est pas demandé dans le contrôle
		return weight;
	}
	
	public int compareTo(Weight e) {
		return this.weight - e.weight;
	}	
}
