if (firstUse && attrs.containsKey(JobName.class)) {
jobNameTxt.setText(((TextSyntax) attrs.get(JobName.class)).getValue());
}
if(supported && (jobNameTxt.getText().length() <= 0)) {
TextSyntax txt = (TextSyntax)
(myService.getDefaultAttributeValue(JobName.class));
jobNameTxt.setText(txt == null ? "" : txt.getValue());
}
}