// java wrapper for vtkProgrammableSource object // package vtk; import vtk.*; public class vtkProgrammableSource extends vtkDataObjectAlgorithm { 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 void SetExecuteMethod_2(Object id0, String id1); public void SetExecuteMethod(Object id0, String id1) { SetExecuteMethod_2(id0,id1); } private native long GetPolyDataOutput_3(); public vtkPolyData GetPolyDataOutput() { long temp = GetPolyDataOutput_3(); if (temp == 0) return null; return (vtkPolyData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetStructuredPointsOutput_4(); public vtkStructuredPoints GetStructuredPointsOutput() { long temp = GetStructuredPointsOutput_4(); if (temp == 0) return null; return (vtkStructuredPoints)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetStructuredGridOutput_5(); public vtkStructuredGrid GetStructuredGridOutput() { long temp = GetStructuredGridOutput_5(); if (temp == 0) return null; return (vtkStructuredGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetUnstructuredGridOutput_6(); public vtkUnstructuredGrid GetUnstructuredGridOutput() { long temp = GetUnstructuredGridOutput_6(); if (temp == 0) return null; return (vtkUnstructuredGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetRectilinearGridOutput_7(); public vtkRectilinearGrid GetRectilinearGridOutput() { long temp = GetRectilinearGridOutput_7(); if (temp == 0) return null; return (vtkRectilinearGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetGraphOutput_8(); public vtkGraph GetGraphOutput() { long temp = GetGraphOutput_8(); if (temp == 0) return null; return (vtkGraph)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetMoleculeOutput_9(); public vtkMolecule GetMoleculeOutput() { long temp = GetMoleculeOutput_9(); if (temp == 0) return null; return (vtkMolecule)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetTableOutput_10(); public vtkTable GetTableOutput() { long temp = GetTableOutput_10(); if (temp == 0) return null; return (vtkTable)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } public vtkProgrammableSource() { super(); } public vtkProgrammableSource(long id) { super(id); } public native long VTKInit(); }