Ejemplo n.º 1
0
 /* (non-Javadoc)
  * @see de.thorstenberger.taskmodel.complex.complextaskhandling.subtasklets.SubTasklet_Text#getInitialTextFieldValue()
  */
 public String getInitialTextFieldValue() {
   // remove Windows/DOS line breaks,
   // see doSave() downwards
   if (textSubTaskDef.getInitialTextFieldValue() != null)
     return textSubTaskDef.getInitialTextFieldValue().replaceAll("\r", "");
   else return null;
 }
Ejemplo n.º 2
0
 public int getTextFieldHeight() {
   return textSubTaskDef.isSetTextFieldHeight() ? textSubTaskDef.getTextFieldHeight() : 15;
 }
Ejemplo n.º 3
0
 public int getTextFieldWidth() {
   return textSubTaskDef.isSetTextFieldWidth() ? textSubTaskDef.getTextFieldWidth() : 60;
 }