Package com.google.api.ads.adwords.awreporting.model.csv.annotation

Examples of com.google.api.ads.adwords.awreporting.model.csv.annotation.CsvField


   */
  private void addNameMappingIfAnnotationPresent(Map<String, String> nameMapping, Field field) {

    if (field.isAnnotationPresent(CsvField.class)) {

      CsvField reportFieldAnnotation = field.getAnnotation(CsvField.class);
      String csvFieldName = reportFieldAnnotation.value();
      nameMapping.put(csvFieldName, field.getName());
    }
  }
View Full Code Here


   */
  private void addPropertyNameIfAnnotationPresent(
      List<String> propertiesToSelect, Field field, Set<String> propertyExclusions) {

    if (field.isAnnotationPresent(CsvField.class)) {
      CsvField reportFieldAnnotation = field.getAnnotation(CsvField.class);
      String reportPropertyName = reportFieldAnnotation.reportField();

      if (!propertyExclusions.contains(reportPropertyName)) {
        propertiesToSelect.add(reportPropertyName);
      }
    }
View Full Code Here

TOP

Related Classes of com.google.api.ads.adwords.awreporting.model.csv.annotation.CsvField

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.