Examples of DriverInfo


Examples of com.google.k2crypto.storage.driver.DriverInfo

 
  /**
   * Returns the meta-data annotated on the driver class.
   */
  DriverInfo getInfo() {
    DriverInfo info = getClass().getAnnotation(DriverInfo.class);
    if (info == null) {
      fail("There should be an annotation.");
    }
    return info;
  }
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.