/* (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; }
public int getTextFieldHeight() { return textSubTaskDef.isSetTextFieldHeight() ? textSubTaskDef.getTextFieldHeight() : 15; }
public int getTextFieldWidth() { return textSubTaskDef.isSetTextFieldWidth() ? textSubTaskDef.getTextFieldWidth() : 60; }