import factory.ClotheFactory;
import model.Clothe;

import java.util.Observable;

/** Created by IntelliJ IDEA. User: MACHIZAUD Andréa Date: 27 sept. 2010 Time: 02:21:06 */
public class Production {

    public static void main(String[] args){
        Observable a;

        Clothe[] wardrobe = new Clothe[10];

        for(int i=10;i>0;i--){
            wardrobe[10-i] = ClotheFactory.getInstance().makeRandomClothe();
        }

        System.out.println("Vêtements : ");
        for(Clothe c : wardrobe)
            System.out.println(" - " + c.toString());
    }
}
