X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=vtk%2Fsrc%2Fvtk%2FvtkMutableGraphHelper.java;fp=vtk%2Fsrc%2Fvtk%2FvtkMutableGraphHelper.java;h=0000000000000000000000000000000000000000;hb=12e21051bd57248b39831d79d68d455077047cdb;hp=f0d138f2b2bc3df140f7f809ff076804578b72d4;hpb=58ebeb2baac48f9066c1395a9071f99745574ef9;p=simantics%2F3d.git diff --git a/vtk/src/vtk/vtkMutableGraphHelper.java b/vtk/src/vtk/vtkMutableGraphHelper.java deleted file mode 100644 index f0d138f2..00000000 --- a/vtk/src/vtk/vtkMutableGraphHelper.java +++ /dev/null @@ -1,63 +0,0 @@ -// java wrapper for vtkMutableGraphHelper object -// - -package vtk; -import vtk.*; - -public class vtkMutableGraphHelper extends vtkObject -{ - - private native String GetClassName_0(); - public String GetClassName() - { return GetClassName_0(); } - - private native int IsA_1(String id0); - public int IsA(String id0) - { return IsA_1(id0); } - - private native void SetGraph_2(vtkGraph id0); - public void SetGraph(vtkGraph id0) - { SetGraph_2(id0); } - - private native long GetGraph_3(); - public vtkGraph GetGraph() { - long temp = GetGraph_3(); - - if (temp == 0) return null; - return (vtkGraph)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); - } - - private native long AddGraphEdge_4(int id0,int id1); - public vtkGraphEdge AddGraphEdge(int id0,int id1) { - long temp = AddGraphEdge_4(id0,id1); - - if (temp == 0) return null; - return (vtkGraphEdge)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); - } - - private native int AddVertex_5(); - public int AddVertex() - { return AddVertex_5(); } - - private native void RemoveVertex_6(int id0); - public void RemoveVertex(int id0) - { RemoveVertex_6(id0); } - - private native void RemoveVertices_7(vtkIdTypeArray id0); - public void RemoveVertices(vtkIdTypeArray id0) - { RemoveVertices_7(id0); } - - private native void RemoveEdge_8(int id0); - public void RemoveEdge(int id0) - { RemoveEdge_8(id0); } - - private native void RemoveEdges_9(vtkIdTypeArray id0); - public void RemoveEdges(vtkIdTypeArray id0) - { RemoveEdges_9(id0); } - - public vtkMutableGraphHelper() { super(); } - - public vtkMutableGraphHelper(long id) { super(id); } - public native long VTKInit(); - -}