]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkSTLWriter.java
Loading VTK dlls with plug-in activator.
[simantics/3d.git] / vtk / src / vtk / vtkSTLWriter.java
1 // java wrapper for vtkSTLWriter object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkSTLWriter extends vtkWriter
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 long GetInput_2();
19   public vtkPolyData GetInput() {
20     long temp = GetInput_2();
21
22     if (temp == 0) return null;
23     return (vtkPolyData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
24 }
25
26   private native long GetInput_3(int id0);
27   public vtkPolyData GetInput(int id0) {
28     long temp = GetInput_3(id0);
29
30     if (temp == 0) return null;
31     return (vtkPolyData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native void SetFileName_4(String id0);
35   public void SetFileName(String id0)
36     { SetFileName_4(id0); }
37
38   private native String GetFileName_5();
39   public String GetFileName()
40     { return GetFileName_5(); }
41
42   private native void SetHeader_6(String id0);
43   public void SetHeader(String id0)
44     { SetHeader_6(id0); }
45
46   private native String GetHeader_7();
47   public String GetHeader()
48     { return GetHeader_7(); }
49
50   private native void SetBinaryHeader_8(vtkUnsignedCharArray id0);
51   public void SetBinaryHeader(vtkUnsignedCharArray id0)
52     { SetBinaryHeader_8(id0); }
53
54   private native long GetBinaryHeader_9();
55   public vtkUnsignedCharArray GetBinaryHeader() {
56     long temp = GetBinaryHeader_9();
57
58     if (temp == 0) return null;
59     return (vtkUnsignedCharArray)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
60 }
61
62   private native void SetFileType_10(int id0);
63   public void SetFileType(int id0)
64     { SetFileType_10(id0); }
65
66   private native int GetFileTypeMinValue_11();
67   public int GetFileTypeMinValue()
68     { return GetFileTypeMinValue_11(); }
69
70   private native int GetFileTypeMaxValue_12();
71   public int GetFileTypeMaxValue()
72     { return GetFileTypeMaxValue_12(); }
73
74   private native int GetFileType_13();
75   public int GetFileType()
76     { return GetFileType_13(); }
77
78   private native void SetFileTypeToASCII_14();
79   public void SetFileTypeToASCII()
80     { SetFileTypeToASCII_14(); }
81
82   private native void SetFileTypeToBinary_15();
83   public void SetFileTypeToBinary()
84     { SetFileTypeToBinary_15(); }
85
86   public vtkSTLWriter() { super(); }
87
88   public vtkSTLWriter(long id) { super(id); }
89   public native long   VTKInit();
90
91 }