Package org.eclipse.egit.ui.internal.preferences

Examples of org.eclipse.egit.ui.internal.preferences.ConfigurationEditorComponent$SubSection


    @Override
    protected Control createDialogArea(Composite parent) {
      Composite main = (Composite) super.createDialogArea(parent);
      GridDataFactory.fillDefaults().align(SWT.FILL, SWT.FILL).grab(true,
          true).applyTo(main);
      editor = new ConfigurationEditorComponent(main, myConfig, true, false) {
        @Override
        protected void setErrorMessage(String message) {
          EditDialog.this.setErrorMessage(message);
        }
View Full Code Here


        public void onConfigChanged(ConfigChangedEvent event) {
          repo.fireEvent(new ConfigChangedEvent());
        }
      });
    }
    editor = new ConfigurationEditorComponent(displayArea, config, true, false) {
      @Override
      protected void setErrorMessage(String message) {
        RepositoryPropertyPage.this.setErrorMessage(message);
      }
    };
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.internal.preferences.ConfigurationEditorComponent$SubSection

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.