135 lines
2.7 KiB
C++
135 lines
2.7 KiB
C++
#include <jni.h>
|
|
#include <jlilv_LilvPort.h>
|
|
|
|
#include <lilv/lilv.h>
|
|
#include <stdio.h>
|
|
/*
|
|
* Class: jlilv_LilvPort
|
|
* Method: getNode
|
|
* Signature: ()Ljlilv/LilvNode;
|
|
*/
|
|
JNIEXPORT jobject JNICALL Java_jlilv_LilvPort_getNode
|
|
(JNIEnv* env, jobject obj){
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* Class: jlilv_LilvPort
|
|
* Method: getValue
|
|
* Signature: (Ljlilv/LilvNode;)Ljlilv/LilvCollection;
|
|
*/
|
|
JNIEXPORT jobject JNICALL Java_jlilv_LilvPort_getValue
|
|
(JNIEnv* env, jobject obj, jobject predicate){
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* Class: jlilv_LilvPort
|
|
* Method: get
|
|
* Signature: (Ljlilv/LilvNode;)Ljlilv/LilvNode;
|
|
*/
|
|
JNIEXPORT jobject JNICALL Java_jlilv_LilvPort_get
|
|
(JNIEnv* env, jobject obj, jobject predicate){
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* Class: jlilv_LilvPort
|
|
* Method: getProperties
|
|
* Signature: ()Ljlilv/LilvCollection;
|
|
*/
|
|
JNIEXPORT jobject JNICALL Java_jlilv_LilvPort_getProperties
|
|
(JNIEnv* env, jobject obj){
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* Class: jlilv_LilvPort
|
|
* Method: hasProperty
|
|
* Signature: (Ljlilv/LilvNode;)Z
|
|
*/
|
|
JNIEXPORT jboolean JNICALL Java_jlilv_LilvPort_hasProperty
|
|
(JNIEnv* env, jobject obj, jobject property){
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* Class: jlilv_LilvPort
|
|
* Method: supportsEvent
|
|
* Signature: (Ljlilv/LilvNode;)Z
|
|
*/
|
|
JNIEXPORT jboolean JNICALL Java_jlilv_LilvPort_supportsEvent
|
|
(JNIEnv* env, jobject obj, jobject enventType){
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* Class: jlilv_LilvPort
|
|
* Method: getIndex
|
|
* Signature: ()I
|
|
*/
|
|
JNIEXPORT jint JNICALL Java_jlilv_LilvPort_getIndex
|
|
(JNIEnv* env, jobject obj){
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* Class: jlilv_LilvPort
|
|
* Method: getSymbol
|
|
* Signature: ()Ljlilv/LilvNode;
|
|
*/
|
|
JNIEXPORT jobject JNICALL Java_jlilv_LilvPort_getSymbol
|
|
(JNIEnv* env, jobject obj){
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* Class: jlilv_LilvPort
|
|
* Method: getName
|
|
* Signature: ()Ljlilv/LilvNode;
|
|
*/
|
|
JNIEXPORT jobject JNICALL Java_jlilv_LilvPort_getName
|
|
(JNIEnv* env, jobject obj){
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* Class: jlilv_LilvPort
|
|
* Method: getClasses
|
|
* Signature: ()Ljlilv/LilvCollection;
|
|
*/
|
|
JNIEXPORT jobject JNICALL Java_jlilv_LilvPort_getClasses
|
|
(JNIEnv* env, jobject obj){
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* Class: jlilv_LilvPort
|
|
* Method: isA
|
|
* Signature: (Ljlilv/LilvNode;)Z
|
|
*/
|
|
JNIEXPORT jboolean JNICALL Java_jlilv_LilvPort_isA
|
|
(JNIEnv* env, jobject obj, jobject portClass){
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* Class: jlilv_LilvPort
|
|
* Method: getRange
|
|
* Signature: ()Ljlilv/LilvPort/PortValues;
|
|
*/
|
|
JNIEXPORT jobject JNICALL Java_jlilv_LilvPort_getRange
|
|
(JNIEnv* env, jobject obj){
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* Class: jlilv_LilvPort
|
|
* Method: getScalePoints
|
|
* Signature: ()Ljlilv/LilvCollection;
|
|
*/
|
|
JNIEXPORT jobject JNICALL Java_jlilv_LilvPort_getScalePoints
|
|
(JNIEnv* env, jobject obj){
|
|
return NULL;
|
|
}
|