Please enter your username to access your account."; return (instructions); } private final static Integer DEFAULT_RANKING = new Integer(80); protected Integer getDefaultRanking() { return DEFAULT_RANKING; } protected Category getDefaultCategory() { return Category.CONCURRENCY; } /** * Gets the title attribute of the ConcurrencyScreen object * * @return The title value */ public String getTitle() { return ("Thread Safety Problems"); } /** * Constructor for the ConcurrencyScreen object * * @param s * Description of the Parameter */ public void handleRequest(WebSession s) { try { super.handleRequest(s); } catch (Exception e) { // System.out.println("Exception caught: " + e); e.printStackTrace(System.out); } } public Element getCredits() { return super.getCustomCredits("", ASPECT_LOGO); } }