Examples of addSection()


Examples of org.eclipse.jface.dialogs.IDialogSettings.addSection()

    }
   
    dialogSettings = pluginSettings.getSection(getName());
    if(dialogSettings == null) {
      dialogSettings = pluginSettings.addNewSection(getName());
      pluginSettings.addSection(dialogSettings);
    }
  }

  /** Loads the input history from the dialog settings. */
  private void loadInputHistory() {
View Full Code Here

Examples of org.encog.persist.EncogWriteHelper.addSection()

   */
  @Override
  public final void save(final OutputStream os, final Object obj) {
    final EncogWriteHelper out = new EncogWriteHelper(os);
    final TrainingContinuation cont = (TrainingContinuation) obj;
    out.addSection("CONT");
    out.addSubSection("PARAMS");
    out.writeProperty("type", cont.getTrainingType());
    for (final String key : cont.getContents().keySet()) {
      final double[] list = (double[]) cont.get(key);
      out.writeProperty(key, list);
View Full Code Here

Examples of org.jamesii.resultreport.ResultReport.addSection()

      // TODO: Implement graceful failure handling and dependencies
      // between report elements
      if (reportElement.isSuccessful()) {
        ResultReportSection perfByModelHeading =
            reportElement.createReportSection();
        report.addSection(perfByModelHeading);
      } else {
        SimSystem.report(Level.SEVERE,
            "Report element '" + reportElement.toString()
                + "' did not execute succesfully.");
      }
View Full Code Here

Examples of org.jitterbit.application.ui.wizard.NumberedSectionsLayout.addSection()

    @Override
    public void decorate(UiCanvas canvas) {
        NumberedSectionsLayout layout = new NumberedSectionsLayout();
        layout.setVerticalGap(16);
        layout.setWeights(new double[] { 1.0, 1.0 }, new double[] { 1.0, 0.0 });
        layout.addSection("Link Keys", wrapComponent(linkKeysDefiner));
        layout.addSection("Join Type", wrapComponent(joinTypeSelector));
        layout.decorate(canvas);
    }

    private JComponent wrapComponent(UiProvider ui) {
View Full Code Here

Examples of org.jostraca.section.SectionSet.addSection()

    Section fooin = new BasicSection( fooname );
    fooin.setContent( footext );
    Section barin = new BasicSection( barname );
    barin.setContent( bartext );
    SectionSet foobarin = new SectionSet();
    foobarin.addSection( fooin );
    foobarin.addSection( barin );

    Identity identity = new Identity();
   
    Section fooout = identity.modify( fooin, mps );
View Full Code Here

Examples of qurtext.domain.Chapter.addSection()

          int[] sectionData=sections[i];
          Chapter chapter=initialChapterMap.get(sectionData[0]);
          Section section = chapter.getSection(sectionData[1]);
          if (null==section) {
            section=new Section();
            chapter.addSection(section);
          }
          section.setSectionNo(i);
          section.setChapterNo(chapter.getChapterNo());
          section.setStartVerse(sectionData[1]);
          section.setEndVerse(sectionData[2]);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.