Package com.codiform.moo.annotation

Examples of com.codiform.moo.annotation.Translation


  private Object getValue(Object source, String expression) {
    return MVEL.eval(expression, source);
  }

  private String getTranslationExpression(Field item) {
    Translation translation = item.getAnnotation(Translation.class);
    if (translation == null || translation.value() == null)
      return item.getName();
    else
      return translation.value();
  }
View Full Code Here


  public String getName() {
    return name;
  }

  public String getTranslationExpression() {
    Translation translationAnnotation = getAnnotation(Translation.class);
    if (translationAnnotation != null) {
      return translationAnnotation.value();
    } else {
      return name;
    }
  }
View Full Code Here

  public String getName() {
    return field.getName();
  }

  public String getTranslationExpression() {
    Translation translationAnnotation = getAnnotation(Translation.class);
    if (translationAnnotation != null) {
      return translationAnnotation.value();
    } else {
      return field.getName();
    }
  }
View Full Code Here

  public String getName() {
    return name;
  }

  public String getTranslationExpression() {
    Translation translationAnnotation = getAnnotation(Translation.class);
    if (translationAnnotation != null) {
      return translationAnnotation.value();
    } else {
      return name;
    }
  }
View Full Code Here

  public String getName() {
    return field.getName();
  }

  public String getTranslationExpression() {
    Translation translationAnnotation = getAnnotation(Translation.class);
    if (translationAnnotation != null) {
      return translationAnnotation.value();
    } else {
      return field.getName();
    }
  }
View Full Code Here

TOP

Related Classes of com.codiform.moo.annotation.Translation

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.