X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=vtk%2Fsrc%2Fvtk%2FvtkMoleculeAlgorithm.java;fp=vtk%2Fsrc%2Fvtk%2FvtkMoleculeAlgorithm.java;h=f7524a510efff142b86a2f9f3cb6bb7c383a7fc1;hb=0f1acf557db4515528bc452c037db0831fd34ecf;hp=0000000000000000000000000000000000000000;hpb=12e21051bd57248b39831d79d68d455077047cdb;p=simantics%2F3d.git diff --git a/vtk/src/vtk/vtkMoleculeAlgorithm.java b/vtk/src/vtk/vtkMoleculeAlgorithm.java new file mode 100644 index 00000000..f7524a51 --- /dev/null +++ b/vtk/src/vtk/vtkMoleculeAlgorithm.java @@ -0,0 +1,83 @@ +// java wrapper for vtkMoleculeAlgorithm object +// + +package vtk; +import vtk.*; + +public class vtkMoleculeAlgorithm extends vtkAlgorithm +{ + + private native int IsTypeOf_0(String id0); + public int IsTypeOf(String id0) + { return IsTypeOf_0(id0); } + + private native int IsA_1(String id0); + public int IsA(String id0) + { return IsA_1(id0); } + + private native long GetOutput_2(); + public vtkMolecule GetOutput() { + long temp = GetOutput_2(); + + if (temp == 0) return null; + return (vtkMolecule)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); +} + + private native long GetOutput_3(int id0); + public vtkMolecule GetOutput(int id0) { + long temp = GetOutput_3(id0); + + if (temp == 0) return null; + return (vtkMolecule)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); +} + + private native void SetOutput_4(vtkMolecule id0); + public void SetOutput(vtkMolecule id0) + { SetOutput_4(id0); } + + private native long GetInput_5(); + public vtkDataObject GetInput() { + long temp = GetInput_5(); + + if (temp == 0) return null; + return (vtkDataObject)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); +} + + private native long GetInput_6(int id0); + public vtkDataObject GetInput(int id0) { + long temp = GetInput_6(id0); + + if (temp == 0) return null; + return (vtkDataObject)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); +} + + private native long GetMoleculeInput_7(int id0); + public vtkMolecule GetMoleculeInput(int id0) { + long temp = GetMoleculeInput_7(id0); + + if (temp == 0) return null; + return (vtkMolecule)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); +} + + private native void SetInputData_8(vtkDataObject id0); + public void SetInputData(vtkDataObject id0) + { SetInputData_8(id0); } + + private native void SetInputData_9(int id0,vtkDataObject id1); + public void SetInputData(int id0,vtkDataObject id1) + { SetInputData_9(id0,id1); } + + private native void AddInputData_10(vtkDataObject id0); + public void AddInputData(vtkDataObject id0) + { AddInputData_10(id0); } + + private native void AddInputData_11(int id0,vtkDataObject id1); + public void AddInputData(int id0,vtkDataObject id1) + { AddInputData_11(id0,id1); } + + public vtkMoleculeAlgorithm() { super(); } + + public vtkMoleculeAlgorithm(long id) { super(id); } + public native long VTKInit(); + +}