Package org.woped.qualanalysis.sidebar.assistant.pages

Examples of org.woped.qualanalysis.sidebar.assistant.pages.SoundnessPage


      soundnessLabel.setBorder(BOTTOM_BORDER);
      sgbl.addComponent(analysisPanel, soundnessLabel, 0, 1, 1, 1, 1, 1);

      // add soundness info
      // create coundness-page with further information
      SoundnessPage soundnessPage = new SoundnessPage(this, sideBar);
      if (soundnessPage.getWarningStatus()) {
        // create "correct"-icon
        correctness = new JLabel(Messages.getImageIcon(CORRECT_ICON));
      } else {
        if (!soundnessPage.getErrorStatus()) {
          // create "incorrect"-icon
          correctness = new JLabel(Messages.getImageIcon(INCORRECT_ICON));
        } else {
          // create "warning"-icon
          correctness = new JLabel(Messages.getImageIcon(WARNING_ICON));
View Full Code Here

TOP

Related Classes of org.woped.qualanalysis.sidebar.assistant.pages.SoundnessPage

Copyright © 2018 www.massapicom. 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.