Package sizzle.aggregators

Examples of sizzle.aggregators.AggregatorSpec.type()


    if (!clazz.isAnnotationPresent(AggregatorSpec.class))
      return;

    final AggregatorSpec annotation = clazz.getAnnotation(AggregatorSpec.class);

    final String type = annotation.type();
    if (type.equals("any"))
      this.aggregators.put(annotation.name(), clazz);
    else
      this.aggregators.put(annotation.name() + ":" + type, clazz);
  }
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.