package gradertool.gradebook; import javax.swing.*; import java.awt.*; /** * NewClassUI */ public class NewClassUI { /** * The new class display window. */ protected NewClassDisplay newClassDisplay; /** * The sis log in display window. */ protected LogInDisplay loginDisplay; /** * The import class display window. */ protected ImportDisplay importDisplay; /** * The importing... display window. */ protected SISDisplay sisDisplay; /** * The manually create class display window. */ protected CreateDisplay createDisplay; /** * Construct the new class window. */ public NewClassUI() { newClassDisplay = new NewClassDisplay(); loginDisplay = new LogInDisplay(); importDisplay = new ImportDisplay(); sisDisplay = new SISDisplay(); createDisplay = new CreateDisplay(); } /** * Returns the New Class Display */ public NewClassDisplay getNewClassDisplay() { return newClassDisplay; } /** * Returns the Login Display */ public LogInDisplay getLogInDisplay() { return loginDisplay; } /** * Returns the Import Display */ public ImportDisplay getImportDisplay() { return importDisplay; } /** * Returns the importing... Display */ public SISDisplay getSISDisplay() { return sisDisplay; } /** * Returns the Create Display */ public CreateDisplay getCreateDisplay() { return createDisplay; } }