Beispiel #1
0
    private Layout(Composite parent) {
      parent.setLayout(new GridLayout());

      Composite comp = new Composite(parent, SWT.NONE);
      GridLayout gridLayout = new GridLayout(3, false);
      gridLayout.marginWidth = gridLayout.marginHeight = 0;
      comp.setLayout(gridLayout);
      comp.setLayoutData(new GridData(GridData.FILL_BOTH));

      m_instrumentationLoggingPanel = new InstrumentationLoggingPanel(comp, SWT.NONE);
      m_instrumentationLoggingPanel.setLayoutData(
          new GridData(SWT.END, SWT.BEGINNING, true, false));

      m_runtimeLoggingPanel = new RuntimeLoggingPanel(comp, SWT.NONE);
      m_runtimeLoggingPanel.setLayoutData(new GridData(SWT.CENTER, SWT.BEGINNING, false, false));

      m_runtimeOutputOptionsPanel = new RuntimeOutputOptionsPanel(comp, SWT.NONE);
      m_runtimeOutputOptionsPanel.setLayoutData(
          new GridData(SWT.BEGINNING, SWT.BEGINNING, true, false));
    }
Beispiel #2
0
 void setup(DsoClientDebugging dsoClientDebugging) {
   m_instrumentationLoggingPanel.setup(m_dsoClientDebugging);
   m_runtimeLoggingPanel.setup(m_dsoClientDebugging);
   m_runtimeOutputOptionsPanel.setup(m_dsoClientDebugging);
 }