/* * @topic T00875 Using Comparable interface to sort objects * @brief class DiceRoller */ package hw7demo; public class DiceRoller { DicePair dice; public DiceRoller( int dieSideCount ) { dice = new DicePair(dieSideCount); } public int roll() { return dice.roll(); } }//class DiceRoller