org.apache.easyant4e/src/org/apache/easyant4e/ivyde/extension/page/PhaseDetailsPage.java [144:158]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        return Status.OK_STATUS;
                    }
                };
                job.schedule();
            }
        });

        section1.setClient(client);
    }

    private void createSpacer(FormToolkit toolkit, Composite parent, int span) {
        Label spacer = toolkit.createLabel(parent, ""); //$NON-NLS-1$
        GridData gd = new GridData();
        gd.horizontalSpan = span;
        spacer.setLayoutData(gd);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



org.apache.easyant4e/src/org/apache/easyant4e/ivyde/extension/page/TargetDetailsPage.java [138:151]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        return Status.OK_STATUS;
                    }
                };
                job.schedule();
            }
        });
        section1.setClient(client);
    }

    private void createSpacer(FormToolkit toolkit, Composite parent, int span) {
        Label spacer = toolkit.createLabel(parent, ""); //$NON-NLS-1$
        GridData gd = new GridData();
        gd.horizontalSpan = span;
        spacer.setLayoutData(gd);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



