// java wrapper for vtkAbstractInteractionDevice object // package vtk; import vtk.*; public class vtkAbstractInteractionDevice extends vtkObject { 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 Initialize_2(); public void Initialize() { Initialize_2(); } private native void Start_3(); public void Start() { Start_3(); } private native void ProcessEvents_4(); public void ProcessEvents() { ProcessEvents_4(); } private native void SetRenderWidget_5(vtkRenderWidget id0); public void SetRenderWidget(vtkRenderWidget id0) { SetRenderWidget_5(id0); } private native long GetRenderWidget_6(); public vtkRenderWidget GetRenderWidget() { long temp = GetRenderWidget_6(); if (temp == 0) return null; return (vtkRenderWidget)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native void SetRenderDevice_7(vtkAbstractRenderDevice id0); public void SetRenderDevice(vtkAbstractRenderDevice id0) { SetRenderDevice_7(id0); } private native long GetRenderDevice_8(); public vtkAbstractRenderDevice GetRenderDevice() { long temp = GetRenderDevice_8(); if (temp == 0) return null; return (vtkAbstractRenderDevice)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } public vtkAbstractInteractionDevice() { super(); } public vtkAbstractInteractionDevice(long id) { super(id); } public native long VTKInit(); }