001/*
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements.  See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License.  You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.apache.commons.flatfile.conversion;
018
019public class Bar {
020    private String x;
021    private Foo[] foos;
022    private String y;
023
024    /**
025     * @return the foos
026     */
027    public synchronized Foo[] getFoos() {
028        return foos;
029    }
030
031    /**
032     * @param foos the foos to set
033     */
034    public synchronized void setFoos(Foo[] foos) {
035        this.foos = foos;
036    }
037
038    /**
039     * @return the x
040     */
041    public synchronized String getX() {
042        return x;
043    }
044
045    /**
046     * @param x the x to set
047     */
048    public synchronized void setX(String x) {
049        this.x = x;
050    }
051
052    /**
053     * @return the y
054     */
055    public synchronized String getY() {
056        return y;
057    }
058
059    /**
060     * @param y the y to set
061     */
062    public synchronized void setY(String y) {
063        this.y = y;
064    }
065
066}