Package com.findwise.hydra.stage

Examples of com.findwise.hydra.stage.Stage


public class WikiPrinter {
  public static void printWikiTable(List<Class<?>> classes) {
    System.out.println("^ Name ^ Package ^ Description ^ Parameters ^");
    for(Class<?> c : classes) {
      Stage s = c.getAnnotation(Stage.class);
      System.out.println("| "+c.getSimpleName() + " | " + c.getPackage().getName()+ " | "+s.description()+" | "+getParametersString(c)+" | ");
    }
  }
View Full Code Here

TOP

Related Classes of com.findwise.hydra.stage.Stage

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.