package com.thoughtworks.acceptance.someobjects.somemoreobjects; import com.thoughtworks.acceptance.objects.Hardware; import com.thoughtworks.acceptance.objects.Software; import com.thoughtworks.acceptance.someobjects.FunnyConstructor; /** * * @author greg * @author $Author: $ (last edit) * @version $Revision: $ */ public class BunchOfStuff { private Cheese cheese; private Fruit fruit; private FunnyConstructor funnyConstructor; private Hardware hardware; private Software software; public BunchOfStuff(Cheese cheese, Fruit fruit, FunnyConstructor funnyConstructor, Hardware hardware, Software software) { this.cheese = cheese; this.fruit = fruit; this.funnyConstructor = funnyConstructor; this.hardware = hardware; this.software = software; } public Cheese getCheese() { return cheese; } public Fruit getFruit() { return fruit; } public FunnyConstructor getFunnyConstructor() { return funnyConstructor; } public Hardware getHardware() { return hardware; } public Software getSoftware() { return software; } }