This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 209263
Collapse All | Expand All

(-)a/core.windows/arch.xml (+6 lines)
Lines 592-597 Link Here
592
    soon go away - as soon as apisupport is rewritten to have quasi-preview
592
    soon go away - as soon as apisupport is rewritten to have quasi-preview
593
    editor.
593
    editor.
594
    </api>
594
    </api>
595
  <api name="org.netbeans.core.WindowSystem.show" category="friend" group="systemproperty"
596
    type="export">
597
      One can use <code>-Dorg.netbeans.core.WindowSystem.show=false</code>
598
      to run all initialization of window system except showing the main
599
      window. Used by installer to pre-generate caches.
600
    </api>
595
  </p>
601
  </p>
596
 </answer>
602
 </answer>
597
603
(-)a/core.windows/src/org/netbeans/core/windows/view/ui/MainWindow.java (-1 / +4 lines)
Lines 390-396 Link Here
390
   }
390
   }
391
391
392
   public void setVisible(boolean visible) {
392
   public void setVisible(boolean visible) {
393
       frame.setVisible(visible);
393
        if ("false".equals(System.getProperty("org.netbeans.core.WindowSystem.show"))) { // NOI18N
394
            return;
395
        }
396
        frame.setVisible(visible);
394
   }
397
   }
395
398
396
   public int getExtendedState() {
399
   public int getExtendedState() {

Return to bug 209263