Example #1
0
static jobject ToReflectedMethod(JNIEnv* env, jclass cls, jmethodID methodID, jboolean isStatic) {
    throwUnsupportedOperationException((Env*) env, "ToReflectedMethod");
    return NULL;
}
Example #2
0
static jmethodID FromReflectedMethod(JNIEnv* env, jobject method) {
    throwUnsupportedOperationException((Env*) env, "FromReflectedMethod");
    return NULL;
}
Example #3
0
static jfieldID FromReflectedField(JNIEnv* env, jobject field) {
    throwUnsupportedOperationException((Env*) env, "FromReflectedField");
    return NULL;
}
Example #4
0
static jint UnregisterNatives(JNIEnv* env, jclass clazz) {
    throwUnsupportedOperationException((Env*) env, "UnregisterNatives");
    return -1;
}
Example #5
0
static jclass DefineClass(JNIEnv* env, const char* name, jobject loader, const jbyte* buf, jsize len) {
    throwUnsupportedOperationException((Env*) env, "DefineClass");
    return NULL;
}
Example #6
0
static void DeleteWeakGlobalRef(JNIEnv* env, jweak obj) {
    throwUnsupportedOperationException((Env*) env, "DeleteWeakGlobalRef");
}
Example #7
0
static jint GetJavaVM(JNIEnv* env, JavaVM** vm) {
    throwUnsupportedOperationException((Env*) env, "GetJavaVM");
    return -1;
}
Example #8
0
static jweak NewWeakGlobalRef(JNIEnv* env, jobject obj) {
    throwUnsupportedOperationException((Env*) env, "NewWeakGlobalRef");
    return NULL;
}
void ArrayImpl::unsupportedOperationError(const TCHAR *method) const {
  throwUnsupportedOperationException(method);
}
Example #10
0
 // Overrides.
 virtual Type::boolean add(E const&) {
     throwUnsupportedOperationException();
     return false;
 }
Example #11
0
 // Overrides.
 virtual Type::int32 size() const {
     throwUnsupportedOperationException();
     return 0;
 }
Example #12
0
 // Overrides.
 virtual javolution::util::Iterator<E> iterator() const {
     throwUnsupportedOperationException();
     return Type::Null;
 }