Package com.skyline.energy.annotation

Examples of com.skyline.energy.annotation.Unique


      }
    }
  }

  private void configUnique(Method method) {
    Unique unique = method.getAnnotation(Unique.class);
    if (unique != null) {
      isUnique = true;
    } else {
      isUnique = false;
    }
View Full Code Here

TOP

Related Classes of com.skyline.energy.annotation.Unique

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.