c@47: /*============================================================================= c@47: * File: EndTestPanel.java c@47: * Author: Carl Bussey c@47: * Created: <2013-06-13 15:39:18 marcusp> c@47: *============================================================================= c@47: */ c@47: c@47: import java.awt.*; c@47: import java.awt.event.*; c@47: import javax.swing.*; c@47: c@47: public class EndTestPanel extends EndBlockPanel { c@47: c@47: public EndTestPanel(Experiment e){ c@47: super(e); c@47: setUp("Exit"); c@47: } c@47: c@47: protected String formatMessage() { c@47: sb.append("

"); c@47: sb.append("That is the end of the listening activity."); c@47: sb.append("
"); c@47: sb.append("Thank you for participating with our study."); c@47: sb.append("
"); c@47: sb.append("Press the button below to exit."); c@47: sb.append("

"); c@47: c@47: return sb.toString(); c@47: } c@47: }