package gradertool.admin; import javax.swing.*; import java.awt.*; /** * ExportUI */ public class ExportUI { /** * The new class display window. */ protected ExportDisplay exportDisplay; /** * The server setup in display window. */ protected ServerSetupDisplay serverSetupDisplay; /** * Construct the new class window. */ public ExportUI() { exportDisplay = new ExportDisplay(); serverSetupDisplay = new ServerSetupDisplay(); } /** * Returns the Export Display */ public ExportDisplay getExportDisplay() { return exportDisplay; } /** * Returns the server setup Display */ public ServerSetupDisplay getServerSetupDisplay() { return serverSetupDisplay; } }