package org.upp.AndroidMath; /** * Native math functions from package AndroidMathUtility. */ public class AndroidMath { private AndroidMath() {} // Native stuff - C/C++ public static native int power(int number, int n); }