]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkIdList.java
Loading VTK dlls with plug-in activator.
[simantics/3d.git] / vtk / src / vtk / vtkIdList.java
1 // java wrapper for vtkIdList object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkIdList 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 void Initialize_2();
19   public void Initialize()
20     { Initialize_2(); }
21
22   private native int Allocate_3(int id0,int id1);
23   public int Allocate(int id0,int id1)
24     { return Allocate_3(id0,id1); }
25
26   private native int GetNumberOfIds_4();
27   public int GetNumberOfIds()
28     { return GetNumberOfIds_4(); }
29
30   private native int GetId_5(int id0);
31   public int GetId(int id0)
32     { return GetId_5(id0); }
33
34   private native void SetNumberOfIds_6(int id0);
35   public void SetNumberOfIds(int id0)
36     { SetNumberOfIds_6(id0); }
37
38   private native void SetId_7(int id0,int id1);
39   public void SetId(int id0,int id1)
40     { SetId_7(id0,id1); }
41
42   private native void InsertId_8(int id0,int id1);
43   public void InsertId(int id0,int id1)
44     { InsertId_8(id0,id1); }
45
46   private native int InsertNextId_9(int id0);
47   public int InsertNextId(int id0)
48     { return InsertNextId_9(id0); }
49
50   private native int InsertUniqueId_10(int id0);
51   public int InsertUniqueId(int id0)
52     { return InsertUniqueId_10(id0); }
53
54   private native void Sort_11();
55   public void Sort()
56     { Sort_11(); }
57
58   private native void Reset_12();
59   public void Reset()
60     { Reset_12(); }
61
62   private native void Squeeze_13();
63   public void Squeeze()
64     { Squeeze_13(); }
65
66   private native void DeepCopy_14(vtkIdList id0);
67   public void DeepCopy(vtkIdList id0)
68     { DeepCopy_14(id0); }
69
70   private native void DeleteId_15(int id0);
71   public void DeleteId(int id0)
72     { DeleteId_15(id0); }
73
74   private native int IsId_16(int id0);
75   public int IsId(int id0)
76     { return IsId_16(id0); }
77
78   private native void IntersectWith_17(vtkIdList id0);
79   public void IntersectWith(vtkIdList id0)
80     { IntersectWith_17(id0); }
81
82   public vtkIdList() { super(); }
83
84   public vtkIdList(long id) { super(id); }
85   public native long   VTKInit();
86
87 }