Package rabbit.ui.internal.pages

Examples of rabbit.ui.internal.pages.Category


  @Test
  public void testAllFields() throws Exception {
    Field[] fields = Category.class.getDeclaredFields();
    for (Field field : fields) {
      if (Category.class == field.getType()) { // Enum constants
        Category category = (Category) field.get(null);
        assertNotNull(category.toString(), category.getText());
        assertNotNull(category.toString(), category.getImageDescriptor());
        System.out.println(category);
      }
    }
  }
View Full Code Here

TOP

Related Classes of rabbit.ui.internal.pages.Category

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.