Package waelti.statistics.queries.annotations

Examples of waelti.statistics.queries.annotations.SetProperty


  private void setQueryFields() {
    assert (this.query != null);

    for (Method method : query.getClass().getMethods()) {
      if (method.isAnnotationPresent(SetProperty.class)) {
        SetProperty setter = method.getAnnotation(SetProperty.class);
        Text field = this.fieldMap.get(setter.value());
        String value = field.getText();
        this.setValue(query, method, value);
      }
    }
View Full Code Here

TOP

Related Classes of waelti.statistics.queries.annotations.SetProperty

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.