]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkTextWidget.java
Revised native library loading for VTK
[simantics/3d.git] / vtk / src / vtk / vtkTextWidget.java
1 // java wrapper for vtkTextWidget object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkTextWidget extends vtkBorderWidget
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 SetRepresentation_2(vtkTextRepresentation id0);
19   public void SetRepresentation(vtkTextRepresentation id0)
20     { SetRepresentation_2(id0); }
21
22   private native void SetTextActor_3(vtkTextActor id0);
23   public void SetTextActor(vtkTextActor id0)
24     { SetTextActor_3(id0); }
25
26   private native long GetTextActor_4();
27   public vtkTextActor GetTextActor() {
28     long temp = GetTextActor_4();
29
30     if (temp == 0) return null;
31     return (vtkTextActor)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native void CreateDefaultRepresentation_5();
35   public void CreateDefaultRepresentation()
36     { CreateDefaultRepresentation_5(); }
37
38   public vtkTextWidget() { super(); }
39
40   public vtkTextWidget(long id) { super(id); }
41   public native long   VTKInit();
42
43 }