blob: ffbbe1750c44e0ea8dd9d98238aa4da5266df11a [file] [log] [blame]
// Copyright 2011 The Apache Software Foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package testsubjects;
import java.util.List;
public class MultipleFields
{
private int fred;
private String barney;
private List<Long> wilma;
private Integer betty;
public int getFred()
{
return fred;
}
public String getBarney()
{
return barney;
}
public List<Long> getWilma()
{
return wilma;
}
public Integer getBetty()
{
return betty;
}
}