textBox.setText( "<" + format + ">" );
} else {
textBox.setText( DateTimeFormat.getFormat(DateTimeFormat.PredefinedFormat.DATE_TIME_SHORT).format(executionTrace.getScenarioSimulatedDate()));
}
final SmallLabel dateHint = new SmallLabel();
textBox.addKeyUpHandler( new KeyUpHandler() {
public void onKeyUp(KeyUpEvent event) {
try {
String exampleDate = DateTimeFormat.getFormat(DateTimeFormat.PredefinedFormat.DATE_TIME_SHORT).format(new Date());
String suggestedDate = textBox.getText() + exampleDate.substring(textBox.getText().length());