You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
462 B
19 lines
462 B
package com.fr.design.write.submit; |
|
|
|
import com.fr.data.ClassSubmitJob; |
|
import com.fr.data.SubmitJob; |
|
|
|
|
|
public class CustomSubmitJobPane extends CustomJobPane { |
|
|
|
|
|
@Override |
|
public SubmitJob updateBean() { |
|
ClassSubmitJob classSubmitJob = new ClassSubmitJob(this.classNameTextField.getText()); |
|
classSubmitJob.setPropertyMap(this.objectProperiesPane.updateBean()); |
|
checkAddButtonEnable(); |
|
|
|
return classSubmitJob; |
|
} |
|
|
|
} |