Package au.net.causal.projo.annotation

Examples of au.net.causal.projo.annotation.Preference.key()


      Iterable<? extends Annotation> annotations, SettingsEntityMetadata targetEntity)
  {
    super(name, propertyType, parent, accessor, annotations);
   
    Preference preference = getAnnotation(Preference.class);
    if (preference == null || StringUtils.isEmpty(preference.key()))
      key = name;
    else
      key = preference.key();
   
    this.targetEntity = targetEntity;
View Full Code Here


   
    Preference preference = getAnnotation(Preference.class);
    if (preference == null || StringUtils.isEmpty(preference.key()))
      key = name;
    else
      key = preference.key();
   
    this.targetEntity = targetEntity;
  }
 
  public String getKey()
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.