blob: 2d18331d9970551222ba33003122b9223b136021 [file] [log] [blame]
Elliott Hughes418d20f2011-09-22 14:00:39 -07001/*
2 * Copyright (C) 2011 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#ifndef ART_SRC_REFLECTION_H_
18#define ART_SRC_REFLECTION_H_
19
20#include "jni.h"
21
22namespace art {
23
24class Class;
25union JValue;
26class Object;
27
28void InitBoxingMethods(JNIEnv* env);
29void BoxPrimitive(JNIEnv* env, Class* src_class, JValue& value);
30bool UnboxPrimitive(JNIEnv* env, Object* o, Class* dst_class, JValue& unboxed_value);
31
32bool ConvertPrimitiveValue(Class* src_class, Class* dst_class, const JValue& src, JValue& dst);
33
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070034jobject InvokeMethod(JNIEnv* env, jobject method, jobject receiver, jobject args, jobject params);
35
Elliott Hughes418d20f2011-09-22 14:00:39 -070036bool VerifyObjectInClass(JNIEnv* env, Object* o, Class* c);
37
38} // namespace art
39
40#endif // ART_SRC_REFLECTION_H_