]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkChartPie.java
PipeRun reverse action
[simantics/3d.git] / vtk / src / vtk / vtkChartPie.java
1 // java wrapper for vtkChartPie object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkChartPie extends vtkChart
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 Update_2();
19   public void Update()
20     { Update_2(); }
21
22   private native boolean Paint_3(vtkContext2D id0);
23   public boolean Paint(vtkContext2D id0)
24     { return Paint_3(id0); }
25
26   private native long AddPlot_4(int id0);
27   public vtkPlot AddPlot(int id0) {
28     long temp = AddPlot_4(id0);
29
30     if (temp == 0) return null;
31     return (vtkPlot)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native int AddPlot_5(vtkPlot id0);
35   public int AddPlot(vtkPlot id0)
36     { return AddPlot_5(id0); }
37
38   private native long GetPlot_6(int id0);
39   public vtkPlot GetPlot(int id0) {
40     long temp = GetPlot_6(id0);
41
42     if (temp == 0) return null;
43     return (vtkPlot)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
44 }
45
46   private native int GetNumberOfPlots_7();
47   public int GetNumberOfPlots()
48     { return GetNumberOfPlots_7(); }
49
50   private native void SetShowLegend_8(boolean id0);
51   public void SetShowLegend(boolean id0)
52     { SetShowLegend_8(id0); }
53
54   private native long GetLegend_9();
55   public vtkChartLegend GetLegend() {
56     long temp = GetLegend_9();
57
58     if (temp == 0) return null;
59     return (vtkChartLegend)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
60 }
61
62   private native void SetScene_10(vtkContextScene id0);
63   public void SetScene(vtkContextScene id0)
64     { SetScene_10(id0); }
65
66   public vtkChartPie() { super(); }
67
68   public vtkChartPie(long id) { super(id); }
69   public native long   VTKInit();
70
71 }