Package org.springframework.ide.eclipse.config.ui.editors.namespaces

Examples of org.springframework.ide.eclipse.config.ui.editors.namespaces.NamespacesDetailsPart


    for (TableItem item : checkViewer.getTable().getItems()) {
      page.setSelection(new StructuredSelection(item.getData()));
      IDetailsPage details = block.getDetailsPart().getCurrentPage();
      assertTrue("Could not load details part.", details instanceof NamespacesDetailsPart);

      NamespacesDetailsPart detailsPart = (NamespacesDetailsPart) details;
      ColumnViewer versionViewer = detailsPart.getVersionViewer();
      assertEquals(item.getChecked(), versionViewer.getControl().getEnabled());
    }
  }
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.config.ui.editors.namespaces.NamespacesDetailsPart

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.