]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkSQLiteQuery.java
Loading VTK dlls with plug-in activator.
[simantics/3d.git] / vtk / src / vtk / vtkSQLiteQuery.java
1 // java wrapper for vtkSQLiteQuery object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkSQLiteQuery extends vtkSQLQuery
8 {
9
10   private native int IsTypeOf_0(String id0);
11   public int IsTypeOf(String id0)
12     { return IsTypeOf_0(id0); }
13
14   private native int IsA_1(String id0);
15   public int IsA(String id0)
16     { return IsA_1(id0); }
17
18   private native boolean SetQuery_2(String id0);
19   public boolean SetQuery(String id0)
20     { return SetQuery_2(id0); }
21
22   private native boolean Execute_3();
23   public boolean Execute()
24     { return Execute_3(); }
25
26   private native int GetNumberOfFields_4();
27   public int GetNumberOfFields()
28     { return GetNumberOfFields_4(); }
29
30   private native String GetFieldName_5(int id0);
31   public String GetFieldName(int id0)
32     { return GetFieldName_5(id0); }
33
34   private native int GetFieldType_6(int id0);
35   public int GetFieldType(int id0)
36     { return GetFieldType_6(id0); }
37
38   private native boolean NextRow_7();
39   public boolean NextRow()
40     { return NextRow_7(); }
41
42   private native boolean HasError_8();
43   public boolean HasError()
44     { return HasError_8(); }
45
46   private native boolean BeginTransaction_9();
47   public boolean BeginTransaction()
48     { return BeginTransaction_9(); }
49
50   private native boolean RollbackTransaction_10();
51   public boolean RollbackTransaction()
52     { return RollbackTransaction_10(); }
53
54   private native boolean CommitTransaction_11();
55   public boolean CommitTransaction()
56     { return CommitTransaction_11(); }
57
58   private native String GetLastErrorText_12();
59   public String GetLastErrorText()
60     { return GetLastErrorText_12(); }
61
62   private native boolean BindParameter_13(int id0,char id1);
63   public boolean BindParameter(int id0,char id1)
64     { return BindParameter_13(id0,id1); }
65
66   private native boolean BindParameter_14(int id0,double id1);
67   public boolean BindParameter(int id0,double id1)
68     { return BindParameter_14(id0,id1); }
69
70   private native boolean BindParameter_15(int id0,String id1);
71   public boolean BindParameter(int id0,String id1)
72     { return BindParameter_15(id0,id1); }
73
74   private native boolean ClearParameterBindings_16();
75   public boolean ClearParameterBindings()
76     { return ClearParameterBindings_16(); }
77
78   public vtkSQLiteQuery() { super(); }
79
80   public vtkSQLiteQuery(long id) { super(id); }
81   public native long   VTKInit();
82
83 }