]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkTooltipItem.java
Add back explicit loading of jawt.dll.
[simantics/3d.git] / vtk / src / vtk / vtkTooltipItem.java
1 // java wrapper for vtkTooltipItem object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkTooltipItem extends vtkContextItem
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 void SetPosition_2(double id0,double id1);
19   public void SetPosition(double id0,double id1)
20     { SetPosition_2(id0,id1); }
21
22   private native void SetPosition_3(double id0[]);
23   public void SetPosition(double id0[])
24     { SetPosition_3(id0); }
25
26   private native double[] GetPosition_4();
27   public double[] GetPosition()
28     { return GetPosition_4(); }
29
30   private native void SetText_5(String id0);
31   public void SetText(String id0)
32     { SetText_5(id0); }
33
34   private native String GetText_6();
35   public String GetText()
36     { return GetText_6(); }
37
38   private native long GetPen_7();
39   public vtkPen GetPen() {
40     long temp = GetPen_7();
41
42     if (temp == 0) return null;
43     return (vtkPen)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
44 }
45
46   private native long GetBrush_8();
47   public vtkBrush GetBrush() {
48     long temp = GetBrush_8();
49
50     if (temp == 0) return null;
51     return (vtkBrush)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
52 }
53
54   private native long GetTextProperties_9();
55   public vtkTextProperty GetTextProperties() {
56     long temp = GetTextProperties_9();
57
58     if (temp == 0) return null;
59     return (vtkTextProperty)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
60 }
61
62   private native void Update_10();
63   public void Update()
64     { Update_10(); }
65
66   private native boolean Paint_11(vtkContext2D id0);
67   public boolean Paint(vtkContext2D id0)
68     { return Paint_11(id0); }
69
70   public vtkTooltipItem() { super(); }
71
72   public vtkTooltipItem(long id) { super(id); }
73   public native long   VTKInit();
74
75 }