Package com.findwise.hydra.stage

Examples of com.findwise.hydra.stage.Stage.description()


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)+" | ");
    }
  }

  public static String getParametersString(Class<?> c) {
    ArrayList<String> list = new ArrayList<String>();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.