]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkCategoryLegend.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkCategoryLegend.java
1 // java wrapper for vtkCategoryLegend object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkCategoryLegend extends vtkChartLegend
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 Paint_2(vtkContext2D id0);
19   public boolean Paint(vtkContext2D id0)
20     { return Paint_2(id0); }
21
22   private native void SetScalarsToColors_3(vtkScalarsToColors id0);
23   public void SetScalarsToColors(vtkScalarsToColors id0)
24     { SetScalarsToColors_3(id0); }
25
26   private native long GetScalarsToColors_4();
27   public vtkScalarsToColors GetScalarsToColors() {
28     long temp = GetScalarsToColors_4();
29
30     if (temp == 0) return null;
31     return (vtkScalarsToColors)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native long GetValues_5();
35   public vtkVariantArray GetValues() {
36     long temp = GetValues_5();
37
38     if (temp == 0) return null;
39     return (vtkVariantArray)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
40 }
41
42   private native void SetValues_6(vtkVariantArray id0);
43   public void SetValues(vtkVariantArray id0)
44     { SetValues_6(id0); }
45
46   private native void SetTitle_7(String id0);
47   public void SetTitle(String id0)
48     { SetTitle_7(id0); }
49
50   private native String GetTitle_8();
51   public String GetTitle()
52     { return GetTitle_8(); }
53
54   private native String GetOutlierLabel_9();
55   public String GetOutlierLabel()
56     { return GetOutlierLabel_9(); }
57
58   private native void SetOutlierLabel_10(String id0);
59   public void SetOutlierLabel(String id0)
60     { SetOutlierLabel_10(id0); }
61
62   public vtkCategoryLegend() { super(); }
63
64   public vtkCategoryLegend(long id) { super(id); }
65   public native long   VTKInit();
66
67 }