// Name: // Lab Section: // Primary TA: // Email: // Date: // CS101 Lab 8 // Stack.java /* * Instructions * Implement your generic Stack class here * It should have the methods described in class and in the notes, * but store and return Objects. */ public class Stack { protected Stack() { } }