Package com.googlecode.objectify.annotation

Examples of com.googlecode.objectify.annotation.Subclass.index()


      return;

    this.addIndexedDiscriminators(clazz.getSuperclass());

    Subclass sub = clazz.getAnnotation(Subclass.class);
    if (sub != null && sub.index()) {
      String disc = (sub.name().length() > 0) ? sub.name() : clazz.getSimpleName();
      this.indexedDiscriminators.add(disc);
    }
  }
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.