• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2019 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package android.aidl.tests.map;
18 
19 import android.aidl.tests.map.Bar;
20 import android.aidl.tests.map.IEmpty;
21 import android.aidl.tests.map.IntEnum;
22 
23 parcelable Foo {
24     Map<String, IntEnum[]> intEnumArrayMap;
25     Map<String, int[]> intArrayMap;
26     Map<String, Bar> barMap;
27     Map<String, Bar[]> barArrayMap;
28     Map<String, String> stringMap;
29     Map<String, String[]> stringArrayMap;
30     Map<String, IEmpty> interfaceMap;
31     Map<String, IBinder> ibinderMap;
32 }
33