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 BeanWithAlienSettings.
17 */
18 @CsvFile(escape = '\\', endOfLine = '\r', separator = '\t', quote = '\'')
19 public class BeanWithAlienSettings {
20
21 /** The gamma. */
22 private String gamma;
23
24 /** The beta. */
25 private String beta;
26
27 /** The alpha. */
28 private String alpha;
29
30 /**
31 * Gets the alpha.
32 *
33 * @return the alpha
34 */
35 public String getAlpha() {
36 return alpha;
37 }
38
39 /**
40 * Sets the alpha.
41 *
42 * @param alpha
43 * the new alpha
44 */
45 public void setAlpha(String alpha) {
46 this.alpha = alpha;
47 }
48
49 /**
50 * Gets the beta.
51 *
52 * @return the beta
53 */
54 public String getBeta() {
55 return beta;
56 }
57
58 /**
59 * Sets the beta.
60 *
61 * @param beta
62 * the new beta
63 */
64 public void setBeta(String beta) {
65 this.beta = beta;
66 }
67
68 /**
69 * Gets the gamma.
70 *
71 * @return the gamma
72 */
73 public String getGamma() {
74 return gamma;
75 }
76
77 /**
78 * Sets the gamma.
79 *
80 * @param gamma
81 * the new gamma
82 */
83 public void setGamma(String gamma) {
84 this.gamma = gamma;
85 }
86 }