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 /**
14 * Note how gamma, beta and alpha are printed in reverse order. This is done on purpose to test whether the declaration
15 * order is taken into account
16 */
17 public class BeanWithMultipleStrings {
18
19 /** The gamma. */
20 private String gamma;
21
22 /** The beta. */
23 private String beta;
24
25 /** The alpha. */
26 private String alpha;
27
28 /**
29 * Gets the alpha.
30 *
31 * @return the alpha
32 */
33 public String getAlpha() {
34 return alpha;
35 }
36
37 /**
38 * Sets the alpha.
39 *
40 * @param alpha
41 * the new alpha
42 */
43 public void setAlpha(String alpha) {
44 this.alpha = alpha;
45 }
46
47 /**
48 * Gets the beta.
49 *
50 * @return the beta
51 */
52 public String getBeta() {
53 return beta;
54 }
55
56 /**
57 * Sets the beta.
58 *
59 * @param beta
60 * the new beta
61 */
62 public void setBeta(String beta) {
63 this.beta = beta;
64 }
65
66 /**
67 * Gets the gamma.
68 *
69 * @return the gamma
70 */
71 public String getGamma() {
72 return gamma;
73 }
74
75 /**
76 * Sets the gamma.
77 *
78 * @param gamma
79 * the new gamma
80 */
81 public void setGamma(String gamma) {
82 this.gamma = gamma;
83 }
84 }