/* * Copyright (c) 2007 NTT DATA Corporation * * 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 jp.terasoluna.fw.util; import java.util.List; import java.util.Map; /** * {@link GenericPropertyUtil}のテストのためのスタブクラス。 */ public class GenericPropertyUtil_Stub01 { private List<String> list1; private List<Map<String, Object>> list2; private List<String[]> list3; private List<?> list4; private List<?> list5; private Map<String, Object> map1; private Map<String[], List<String>> map2; private Map<?, ?> map3; private int integer; private Object object; /** * list1を取得する。 * @return list1 */ public List<String> getList1() { return this.list1; } /** * list2を取得する。 * @return list2 */ public List<Map<String, Object>> getList2() { return this.list2; } /** * list3を取得する。 * @return list3 */ public List<String[]> getList3() { return this.list3; } /** * map1を取得する。 * @return map1 */ public Map<String, Object> getMap1() { return this.map1; } /** * map2を取得する。 * @return map2 */ public Map<String[], List<String>> getMap2() { return this.map2; } /** * map3を取得する。 * @return map3 */ public Map<?, ?> getMap3() { return this.map3; } /** * list4を取得する。 * @return list4 */ public List<?> getList4() { return this.list4; } /** * list5を取得する。 * @return list5 */ public List<?> getList5() { return this.list5; } /** * integerを取得する。 * @return integer */ public int getInteger() { return this.integer; } /** * objectを取得する。 * @return object */ public Object getObject() { return this.object; } }