// Name: // Lab Section: // Primary TA: // Email: // Date: // CS101 Lab 8 // RoomStack.java /* * Instructions: * Complete this method by adding what is needed beyond its superclass * of Stack. * You shouldn't have to put a lot of stuff in here! What you need * will depend on how you call this class from your modifications to Room. */ public class RoomStack extends Stack { public RoomStack() { } }