~ubuntu-branches/ubuntu/trusty/hyperestraier/trusty

« back to all changes in this revision

Viewing changes to javanative/estraier_Document.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2006-11-14 05:28:32 UTC
  • mfrom: (2.1.4 feisty)
  • Revision ID: james.westby@ubuntu.com-20061114052832-0lzqzcefn8mt4yqe
Tags: 1.4.9-1.1
* Non-maintainer upload.
* High-urgency upload for RC bugfix.
* Set HOME=$(CURDIR)/junkhome when building, otherwise the package build
  will incorrectly look for headers there -- and fail when the directory
  exists and is unreadable, as happens sometimes on sudo-using
  autobuilders!

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
/*
35
35
 * Class:     estraier_Document
 
36
 * Method:    set_keywords
 
37
 * Signature: (Ljava/util/Map;)V
 
38
 */
 
39
JNIEXPORT void JNICALL Java_estraier_Document_set_1keywords
 
40
  (JNIEnv *, jobject, jobject);
 
41
 
 
42
/*
 
43
 * Class:     estraier_Document
 
44
 * Method:    set_score
 
45
 * Signature: (I)V
 
46
 */
 
47
JNIEXPORT void JNICALL Java_estraier_Document_set_1score
 
48
  (JNIEnv *, jobject, jint);
 
49
 
 
50
/*
 
51
 * Class:     estraier_Document
36
52
 * Method:    id
37
53
 * Signature: ()I
38
54
 */
73
89
 
74
90
/*
75
91
 * Class:     estraier_Document
 
92
 * Method:    keywords
 
93
 * Signature: ()Ljava/util/Map;
 
94
 */
 
95
JNIEXPORT jobject JNICALL Java_estraier_Document_keywords
 
96
  (JNIEnv *, jobject);
 
97
 
 
98
/*
 
99
 * Class:     estraier_Document
 
100
 * Method:    score
 
101
 * Signature: ()I
 
102
 */
 
103
JNIEXPORT jint JNICALL Java_estraier_Document_score
 
104
  (JNIEnv *, jobject);
 
105
 
 
106
/*
 
107
 * Class:     estraier_Document
76
108
 * Method:    dump_draft
77
109
 * Signature: ()Ljava/lang/String;
78
110
 */