1/*
2 * Copyright (C) 2010 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
17package com.android.tools.layoutlib.create.dataclass;
18
19import com.android.tools.layoutlib.create.DelegateClassAdapterTest;
20
21/**
22 * Dummy test class with a native method.
23 * The native method is not defined and any attempt to invoke it will
24 * throw an {@link UnsatisfiedLinkError}.
25 *
26 * Used by {@link DelegateClassAdapterTest}.
27 */
28public class ClassWithNative {
29    public ClassWithNative() {
30    }
31
32    public int add(int a, int b) {
33        return a + b;
34    }
35
36    // Note: it's good to have a long or double for testing parameters since they take
37    // 2 slots in the stack/locals maps.
38
39    public int callNativeInstance(int a, double d, Object[] o) {
40        return native_instance(a, d, o);
41    }
42
43    private native int native_instance(int a, double d, Object[] o);
44}
45
46