Generate JNI code for built in Integer class
TBR=sakal@webrtc.org Bug: webrtc:8279 Change-Id: Ic2e5d169f11a0d4a88086d61f737f33ab9e86447 Reviewed-on: https://webrtc-review.googlesource.com/24220 Reviewed-by: Magnus Jedvert <magjed@webrtc.org> Commit-Queue: Magnus Jedvert <magjed@webrtc.org> Cr-Commit-Position: refs/heads/master@{#20881}
This commit is contained in:
committed by
Commit Bot
parent
18b823e0f5
commit
a319931f3c
@ -1,24 +0,0 @@
|
||||
/*
|
||||
* Copyright 2017 The WebRTC project authors. All Rights Reserved.
|
||||
*
|
||||
* Use of this source code is governed by a BSD-style license
|
||||
* that can be found in the LICENSE file in the root of the source
|
||||
* tree. An additional intellectual property rights grant can be found
|
||||
* in the file PATENTS. All contributing project authors may
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
package org.webrtc;
|
||||
|
||||
/** This class contains the Java glue code for JNI generation of Integer handling. */
|
||||
class IntegerWrapper {
|
||||
@CalledByNative
|
||||
static Integer create(int i) {
|
||||
return Integer.valueOf(i);
|
||||
}
|
||||
|
||||
@CalledByNative
|
||||
static int getIntValue(Integer i) {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user