X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;ds=inline;f=server%2Fruntime%2Forg.argeo.server.jxl%2Fsrc%2Ftest%2Fjava%2Forg%2Fargeo%2Fserver%2Fjxl%2Fdao%2FCollectionsObject.java;h=d64c8baf8497fbb7f12f08baff7039b65ef18647;hb=490d9907457c43acfa965e7979ce5974bc1ba6ca;hp=2e5f33b2865b7a1a21729787d694f4a732eade01;hpb=d8c2b3440de26af2f60e90e4e1b1f4fdbc7b0735;p=lgpl%2Fargeo-commons.git diff --git a/server/runtime/org.argeo.server.jxl/src/test/java/org/argeo/server/jxl/dao/CollectionsObject.java b/server/runtime/org.argeo.server.jxl/src/test/java/org/argeo/server/jxl/dao/CollectionsObject.java index 2e5f33b28..d64c8baf8 100644 --- a/server/runtime/org.argeo.server.jxl/src/test/java/org/argeo/server/jxl/dao/CollectionsObject.java +++ b/server/runtime/org.argeo.server.jxl/src/test/java/org/argeo/server/jxl/dao/CollectionsObject.java @@ -1,3 +1,19 @@ +/* + * Copyright (C) 2010 Mathieu Baudier + * + * 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 org.argeo.server.jxl.dao; import java.util.ArrayList; @@ -12,6 +28,7 @@ public class CollectionsObject { private List stringList = new ArrayList(); private Map floatMap = new HashMap(); private Map objectMap = new HashMap(); + private Map> mapOfMaps = new HashMap>(); public String getId() { return id; @@ -60,4 +77,12 @@ public class CollectionsObject { public void setObjectMap(Map objectMap) { this.objectMap = objectMap; } + + public Map> getMapOfMaps() { + return mapOfMaps; + } + + public void setMapOfMaps(Map> mapOfMaps) { + this.mapOfMaps = mapOfMaps; + } }