uimaj-ep-deployeditor/src/main/java/org/apache/uima/dde/internal/details/TemplateDetailsPage.java [78:102]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private Section createIdentitySection(Composite parent, FormToolkit toolkit) {
    Section section = FormSection.createTableWrapDataSection(toolkit, parent, Section.DESCRIPTION
            | Section.TWISTIE | Section.EXPANDED, "Template Details", "Set the properties of ...",
            10, 5, TableWrapData.FILL_GRAB, TableWrapData.FILL_GRAB, 1, 1);
    final SectionPart spart = new SectionPart(section);
    mform.addPart(spart);
    spart.initialize(mform); // Need this code. Otherwise, exception in SectionPart !!!
    section.setExpanded(true);

    // /////////////////////////////////////////////////////////////////////

    Composite sectionClient = toolkit.createComposite(section);
    section.setClient(sectionClient);
    TableWrapLayout tl = new TableWrapLayout();
    tl.numColumns = 2;
    tl.leftMargin = 10;
    tl.rightMargin = 10;
    tl.topMargin = 10;
    tl.bottomMargin = 10;
    sectionClient.setLayout(tl);

    // /////////////////////////////////////////////////////////////////////

    return section;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



uimaj-ep-deployeditor/src/main/java/org/apache/uima/dde/internal/details/EmptyDetailsPage.java [78:102]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private Section createIdentitySection(Composite parent, FormToolkit toolkit) {
    Section section = FormSection.createTableWrapDataSection(toolkit, parent, Section.DESCRIPTION
            | Section.TWISTIE | Section.EXPANDED, "No Details are available", "No information is available.",
            10, 5, TableWrapData.FILL_GRAB, TableWrapData.FILL_GRAB, 1, 1);
    final SectionPart spart = new SectionPart(section);
    mform.addPart(spart);
    spart.initialize(mform); // Need this code. Otherwise, exception in SectionPart !!!
    section.setExpanded(true);

    // /////////////////////////////////////////////////////////////////////

    Composite sectionClient = toolkit.createComposite(section);
    section.setClient(sectionClient);
    TableWrapLayout tl = new TableWrapLayout();
    tl.numColumns = 2;
    tl.leftMargin = 10;
    tl.rightMargin = 10;
    tl.topMargin = 10;
    tl.bottomMargin = 10;
    sectionClient.setLayout(tl);

    // /////////////////////////////////////////////////////////////////////

    return section;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



