]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkGenericAttributeCollection.java
Loading VTK dlls with plug-in activator.
[simantics/3d.git] / vtk / src / vtk / vtkGenericAttributeCollection.java
1 // java wrapper for vtkGenericAttributeCollection object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkGenericAttributeCollection extends vtkObject
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 int GetNumberOfAttributes_2();
19   public int GetNumberOfAttributes()
20     { return GetNumberOfAttributes_2(); }
21
22   private native int GetNumberOfComponents_3();
23   public int GetNumberOfComponents()
24     { return GetNumberOfComponents_3(); }
25
26   private native int GetNumberOfPointCenteredComponents_4();
27   public int GetNumberOfPointCenteredComponents()
28     { return GetNumberOfPointCenteredComponents_4(); }
29
30   private native int GetMaxNumberOfComponents_5();
31   public int GetMaxNumberOfComponents()
32     { return GetMaxNumberOfComponents_5(); }
33
34   private native int GetActualMemorySize_6();
35   public int GetActualMemorySize()
36     { return GetActualMemorySize_6(); }
37
38   private native int IsEmpty_7();
39   public int IsEmpty()
40     { return IsEmpty_7(); }
41
42   private native long GetAttribute_8(int id0);
43   public vtkGenericAttribute GetAttribute(int id0) {
44     long temp = GetAttribute_8(id0);
45
46     if (temp == 0) return null;
47     return (vtkGenericAttribute)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
48 }
49
50   private native int FindAttribute_9(String id0);
51   public int FindAttribute(String id0)
52     { return FindAttribute_9(id0); }
53
54   private native int GetAttributeIndex_10(int id0);
55   public int GetAttributeIndex(int id0)
56     { return GetAttributeIndex_10(id0); }
57
58   private native void InsertNextAttribute_11(vtkGenericAttribute id0);
59   public void InsertNextAttribute(vtkGenericAttribute id0)
60     { InsertNextAttribute_11(id0); }
61
62   private native void InsertAttribute_12(int id0,vtkGenericAttribute id1);
63   public void InsertAttribute(int id0,vtkGenericAttribute id1)
64     { InsertAttribute_12(id0,id1); }
65
66   private native void RemoveAttribute_13(int id0);
67   public void RemoveAttribute(int id0)
68     { RemoveAttribute_13(id0); }
69
70   private native void Reset_14();
71   public void Reset()
72     { Reset_14(); }
73
74   private native void DeepCopy_15(vtkGenericAttributeCollection id0);
75   public void DeepCopy(vtkGenericAttributeCollection id0)
76     { DeepCopy_15(id0); }
77
78   private native void ShallowCopy_16(vtkGenericAttributeCollection id0);
79   public void ShallowCopy(vtkGenericAttributeCollection id0)
80     { ShallowCopy_16(id0); }
81
82   private native int GetMTime_17();
83   public int GetMTime()
84     { return GetMTime_17(); }
85
86   private native int GetActiveAttribute_18();
87   public int GetActiveAttribute()
88     { return GetActiveAttribute_18(); }
89
90   private native int GetActiveComponent_19();
91   public int GetActiveComponent()
92     { return GetActiveComponent_19(); }
93
94   private native void SetActiveAttribute_20(int id0,int id1);
95   public void SetActiveAttribute(int id0,int id1)
96     { SetActiveAttribute_20(id0,id1); }
97
98   private native int GetNumberOfAttributesToInterpolate_21();
99   public int GetNumberOfAttributesToInterpolate()
100     { return GetNumberOfAttributesToInterpolate_21(); }
101
102   private native void SetAttributesToInterpolateToAll_22();
103   public void SetAttributesToInterpolateToAll()
104     { SetAttributesToInterpolateToAll_22(); }
105
106   public vtkGenericAttributeCollection() { super(); }
107
108   public vtkGenericAttributeCollection(long id) { super(id); }
109   public native long   VTKInit();
110
111 }