|
|
|
@ -5,8 +5,6 @@ import com.fr.form.ui.WriteAbleRepeatEditor;
|
|
|
|
|
|
|
|
|
|
import javax.swing.JPanel; |
|
|
|
|
|
|
|
|
|
import static com.fine.swing.ui.layout.Layouts.cell; |
|
|
|
|
import static com.fine.swing.ui.layout.Layouts.row; |
|
|
|
|
import static com.fine.swing.ui.layout.Layouts.column; |
|
|
|
|
|
|
|
|
|
public abstract class WritableRepeatEditorPane<E extends WriteAbleRepeatEditor> extends DirectWriteEditorDefinePane<E> { |
|
|
|
@ -21,7 +19,7 @@ public abstract class WritableRepeatEditorPane<E extends WriteAbleRepeatEditor>
|
|
|
|
|
JPanel contentPane = column(LayoutConstants.VERTICAL_GAP).getComponent(); |
|
|
|
|
JPanel otherContentPane = this.setThirdContentPane(); |
|
|
|
|
if (otherContentPane != null) { |
|
|
|
|
contentPane.add(row(cell(otherContentPane)).getComponent()); |
|
|
|
|
contentPane.add(otherContentPane); |
|
|
|
|
} |
|
|
|
|
return contentPane; |
|
|
|
|
} |
|
|
|
|