1 /* 2 * CSVeed (https://github.com/42BV/CSVeed) 3 * 4 * Copyright 2013-2023 CSVeed. 5 * 6 * All rights reserved. This program and the accompanying materials 7 * are made available under the terms of The Apache Software License, 8 * Version 2.0 which accompanies this distribution, and is available at 9 * https://www.apache.org/licenses/LICENSE-2.0.txt 10 */ 11 package org.csveed.test.model; 12 13 import org.csveed.annotations.CsvFile; 14 15 /** 16 * The Class BeanCustomComments. 17 */ 18 @CsvFile(comment = '%') 19 public class BeanCustomComments { 20 21 /** The name. */ 22 public String name; 23 24 /** 25 * Gets the name. 26 * 27 * @return the name 28 */ 29 public String getName() { 30 return name; 31 } 32 33 /** 34 * Sets the name. 35 * 36 * @param name 37 * the new name 38 */ 39 public void setName(String name) { 40 this.name = name; 41 } 42 }