// java wrapper for vtkImageStencil object // package vtk; import vtk.*; public class vtkImageStencil extends vtkThreadedImageAlgorithm { 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 SetStencil_2(vtkImageStencilData id0); public void SetStencil(vtkImageStencilData id0) { SetStencil_2(id0); } private native long GetStencil_3(); public vtkImageStencilData GetStencil() { long temp = GetStencil_3(); if (temp == 0) return null; return (vtkImageStencilData)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native void SetReverseStencil_4(int id0); public void SetReverseStencil(int id0) { SetReverseStencil_4(id0); } private native void ReverseStencilOn_5(); public void ReverseStencilOn() { ReverseStencilOn_5(); } private native void ReverseStencilOff_6(); public void ReverseStencilOff() { ReverseStencilOff_6(); } private native int GetReverseStencil_7(); public int GetReverseStencil() { return GetReverseStencil_7(); } private native void SetBackgroundInput_8(vtkImageData id0); public void SetBackgroundInput(vtkImageData id0) { SetBackgroundInput_8(id0); } private native long GetBackgroundInput_9(); public vtkImageData GetBackgroundInput() { long temp = GetBackgroundInput_9(); if (temp == 0) return null; return (vtkImageData)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native void SetBackgroundValue_10(double id0); public void SetBackgroundValue(double id0) { SetBackgroundValue_10(id0); } private native double GetBackgroundValue_11(); public double GetBackgroundValue() { return GetBackgroundValue_11(); } private native void SetBackgroundColor_12(double id0,double id1,double id2,double id3); public void SetBackgroundColor(double id0,double id1,double id2,double id3) { SetBackgroundColor_12(id0,id1,id2,id3); } private native void SetBackgroundColor_13(double id0[]); public void SetBackgroundColor(double id0[]) { SetBackgroundColor_13(id0); } private native double[] GetBackgroundColor_14(); public double[] GetBackgroundColor() { return GetBackgroundColor_14(); } public vtkImageStencil() { super(); } public vtkImageStencil(long id) { super(id); } public native long VTKInit(); }