* @param addDialogTitle The title shown when the Add button is pressed.
* @param rows The max number of rows in the PropertyEditor.
*/
public PropertyEditorFormItem(String name, String title, String addDialogTitle, int rows) {
super(name, title);
this.propertyEditor = new PropertyEditor(this, true, rows);
this.addDialogTitle = addDialogTitle;
}