LinearLayout.java revision 2ff4f504c82e35c1f8d3cae79a32b4400a628c28
19b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yeh/*
29b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yeh * Copyright (C) 2008 The Android Open Source Project
39b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yeh *
49b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yeh * Licensed under the Eclipse Public License, Version 1.0 (the "License");
59b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yeh * you may not use this file except in compliance with the License.
69b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yeh * You may obtain a copy of the License at
79b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yeh *
89b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yeh *      http://www.eclipse.org/org/documents/epl-v10.php
99b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yeh *
109b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yeh * Unless required by applicable law or agreed to in writing, software
119b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yeh * distributed under the License is distributed on an "AS IS" BASIS,
129b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yeh * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
139b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yeh * See the License for the specific language governing permissions and
149b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yeh * limitations under the License.
159b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yeh */
169b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yeh
179b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yehpackage mock_android.widget;
189b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yeh
199b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yehimport mock_android.util.EmptyArray;
209b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yehimport mock_android.view.ViewGroup;
219b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yeh
229b7a3f1a6437605022568cad0b92d5006a2ab391Chia-chi Yehpublic class LinearLayout extends ViewGroup {
239d7faa91be6661eccf73494f1ab96ae9a28d42d7Brian Carlstrom
249d7faa91be6661eccf73494f1ab96ae9a28d42d7Brian Carlstrom    Object[] mObjects = EmptyArray.OBJECT;
259d7faa91be6661eccf73494f1ab96ae9a28d42d7Brian Carlstrom    public class LayoutParams extends MarginLayoutParams {
269d7faa91be6661eccf73494f1ab96ae9a28d42d7Brian Carlstrom
279d7faa91be6661eccf73494f1ab96ae9a28d42d7Brian Carlstrom    }
289d7faa91be6661eccf73494f1ab96ae9a28d42d7Brian Carlstrom
295423e68d5dbe048ec6f042cce52a33f94184e9fbKenny Root}
309d7faa91be6661eccf73494f1ab96ae9a28d42d7Brian Carlstrom