@Override
  public void setInput(IInspectorProvider provider, Object element) {
    super.setInput(provider, element);

    if (fMainSection != null) {
      fMainSection.setInput(provider, element);
    }
  }
  public OrganiserResourcePage(Composite parent) {
    super(parent);

    fMainSection = new OrganiserResourceSection(this);
    fMainSection.createControls();
  }