X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=vtk%2Fsrc%2Fvtk%2FvtkAbstractArray.java;h=ac90488049b7aa0fda1b905b323f8456b01a2c46;hb=3523a218827de60e1aa4ce7be126342418ddb054;hp=744bf4fadc9bfd848f97bd258f509a5aad239057;hpb=471c46e9a685e20de958d77166461aebc7a7b6ee;p=simantics%2F3d.git diff --git a/vtk/src/vtk/vtkAbstractArray.java b/vtk/src/vtk/vtkAbstractArray.java index 744bf4fa..ac904880 100644 --- a/vtk/src/vtk/vtkAbstractArray.java +++ b/vtk/src/vtk/vtkAbstractArray.java @@ -1,206 +1,278 @@ -// java wrapper for vtkAbstractArray object -// - -package vtk; -import vtk.*; - -public class vtkAbstractArray 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 int Allocate_2(int id0,int id1); - public int Allocate(int id0,int id1) - { return Allocate_2(id0,id1); } - - private native void Initialize_3(); - public void Initialize() - { Initialize_3(); } - - private native int GetDataType_4(); - public int GetDataType() - { return GetDataType_4(); } - - private native int GetDataTypeSize_5(); - public int GetDataTypeSize() - { return GetDataTypeSize_5(); } - - private native int GetDataTypeSize_6(int id0); - public int GetDataTypeSize(int id0) - { return GetDataTypeSize_6(id0); } - - private native int GetElementComponentSize_7(); - public int GetElementComponentSize() - { return GetElementComponentSize_7(); } - - private native void SetNumberOfComponents_8(int id0); - public void SetNumberOfComponents(int id0) - { SetNumberOfComponents_8(id0); } - - private native int GetNumberOfComponentsMinValue_9(); - public int GetNumberOfComponentsMinValue() - { return GetNumberOfComponentsMinValue_9(); } - - private native int GetNumberOfComponentsMaxValue_10(); - public int GetNumberOfComponentsMaxValue() - { return GetNumberOfComponentsMaxValue_10(); } - - private native int GetNumberOfComponents_11(); - public int GetNumberOfComponents() - { return GetNumberOfComponents_11(); } - - private native void SetComponentName_12(int id0,String id1); - public void SetComponentName(int id0,String id1) - { SetComponentName_12(id0,id1); } - - private native String GetComponentName_13(int id0); - public String GetComponentName(int id0) - { return GetComponentName_13(id0); } - - private native boolean HasAComponentName_14(); - public boolean HasAComponentName() - { return HasAComponentName_14(); } - - private native int CopyComponentNames_15(vtkAbstractArray id0); - public int CopyComponentNames(vtkAbstractArray id0) - { return CopyComponentNames_15(id0); } - - private native void SetNumberOfTuples_16(int id0); - public void SetNumberOfTuples(int id0) - { SetNumberOfTuples_16(id0); } - - private native int GetNumberOfTuples_17(); - public int GetNumberOfTuples() - { return GetNumberOfTuples_17(); } - - private native void SetTuple_18(int id0,int id1,vtkAbstractArray id2); - public void SetTuple(int id0,int id1,vtkAbstractArray id2) - { SetTuple_18(id0,id1,id2); } - - private native void InsertTuple_19(int id0,int id1,vtkAbstractArray id2); - public void InsertTuple(int id0,int id1,vtkAbstractArray id2) - { InsertTuple_19(id0,id1,id2); } - - private native int InsertNextTuple_20(int id0,vtkAbstractArray id1); - public int InsertNextTuple(int id0,vtkAbstractArray id1) - { return InsertNextTuple_20(id0,id1); } - - private native void GetTuples_21(vtkIdList id0,vtkAbstractArray id1); - public void GetTuples(vtkIdList id0,vtkAbstractArray id1) - { GetTuples_21(id0,id1); } - - private native void GetTuples_22(int id0,int id1,vtkAbstractArray id2); - public void GetTuples(int id0,int id1,vtkAbstractArray id2) - { GetTuples_22(id0,id1,id2); } - - private native void DeepCopy_23(vtkAbstractArray id0); - public void DeepCopy(vtkAbstractArray id0) - { DeepCopy_23(id0); } - - private native void InterpolateTuple_24(int id0,int id1,vtkAbstractArray id2,int id3,vtkAbstractArray id4,double id5); - public void InterpolateTuple(int id0,int id1,vtkAbstractArray id2,int id3,vtkAbstractArray id4,double id5) - { InterpolateTuple_24(id0,id1,id2,id3,id4,id5); } - - private native void Squeeze_25(); - public void Squeeze() - { Squeeze_25(); } - - private native int Resize_26(int id0); - public int Resize(int id0) - { return Resize_26(id0); } - - private native void Reset_27(); - public void Reset() - { Reset_27(); } - - private native int GetSize_28(); - public int GetSize() - { return GetSize_28(); } - - private native int GetMaxId_29(); - public int GetMaxId() - { return GetMaxId_29(); } - - private native int GetActualMemorySize_30(); - public int GetActualMemorySize() - { return GetActualMemorySize_30(); } - - private native void SetName_31(String id0); - public void SetName(String id0) - { SetName_31(id0); } - - private native String GetName_32(); - public String GetName() - { return GetName_32(); } - - private native String GetDataTypeAsString_33(); - public String GetDataTypeAsString() - { return GetDataTypeAsString_33(); } - - private native long CreateArray_34(int id0); - public vtkAbstractArray CreateArray(int id0) { - long temp = CreateArray_34(id0); - - if (temp == 0) return null; - return (vtkAbstractArray)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); - } - - private native int IsNumeric_35(); - public int IsNumeric() - { return IsNumeric_35(); } - - private native long NewIterator_36(); - public vtkArrayIterator NewIterator() { - long temp = NewIterator_36(); - - if (temp == 0) return null; - return (vtkArrayIterator)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); - } - - private native int GetDataSize_37(); - public int GetDataSize() - { return GetDataSize_37(); } - - private native void DataChanged_38(); - public void DataChanged() - { DataChanged_38(); } - - private native void ClearLookup_39(); - public void ClearLookup() - { ClearLookup_39(); } - - private native long GetInformation_40(); - public vtkInformation GetInformation() { - long temp = GetInformation_40(); - - if (temp == 0) return null; - return (vtkInformation)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); - } - - private native boolean HasInformation_41(); - public boolean HasInformation() - { return HasInformation_41(); } - - private native int CopyInformation_42(vtkInformation id0,int id1); - public int CopyInformation(vtkInformation id0,int id1) - { return CopyInformation_42(id0,id1); } - - private native long GUI_HIDE_43(); - public vtkInformationIntegerKey GUI_HIDE() { - long temp = GUI_HIDE_43(); - - if (temp == 0) return null; - return (vtkInformationIntegerKey)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); - } - - public vtkAbstractArray() { super(); } - - public vtkAbstractArray(long id) { super(id); } - -} +// java wrapper for vtkAbstractArray object +// + +package vtk; +import vtk.*; + +public class vtkAbstractArray 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 int Allocate_2(int id0,int id1); + public int Allocate(int id0,int id1) + { return Allocate_2(id0,id1); } + + private native void Initialize_3(); + public void Initialize() + { Initialize_3(); } + + private native int GetDataType_4(); + public int GetDataType() + { return GetDataType_4(); } + + private native int GetDataTypeSize_5(); + public int GetDataTypeSize() + { return GetDataTypeSize_5(); } + + private native int GetDataTypeSize_6(int id0); + public int GetDataTypeSize(int id0) + { return GetDataTypeSize_6(id0); } + + private native int GetElementComponentSize_7(); + public int GetElementComponentSize() + { return GetElementComponentSize_7(); } + + private native void SetNumberOfComponents_8(int id0); + public void SetNumberOfComponents(int id0) + { SetNumberOfComponents_8(id0); } + + private native int GetNumberOfComponentsMinValue_9(); + public int GetNumberOfComponentsMinValue() + { return GetNumberOfComponentsMinValue_9(); } + + private native int GetNumberOfComponentsMaxValue_10(); + public int GetNumberOfComponentsMaxValue() + { return GetNumberOfComponentsMaxValue_10(); } + + private native int GetNumberOfComponents_11(); + public int GetNumberOfComponents() + { return GetNumberOfComponents_11(); } + + private native void SetComponentName_12(int id0,String id1); + public void SetComponentName(int id0,String id1) + { SetComponentName_12(id0,id1); } + + private native String GetComponentName_13(int id0); + public String GetComponentName(int id0) + { return GetComponentName_13(id0); } + + private native boolean HasAComponentName_14(); + public boolean HasAComponentName() + { return HasAComponentName_14(); } + + private native int CopyComponentNames_15(vtkAbstractArray id0); + public int CopyComponentNames(vtkAbstractArray id0) + { return CopyComponentNames_15(id0); } + + private native void SetNumberOfTuples_16(int id0); + public void SetNumberOfTuples(int id0) + { SetNumberOfTuples_16(id0); } + + private native void SetNumberOfValues_17(int id0); + public void SetNumberOfValues(int id0) + { SetNumberOfValues_17(id0); } + + private native int GetNumberOfTuples_18(); + public int GetNumberOfTuples() + { return GetNumberOfTuples_18(); } + + private native int GetNumberOfValues_19(); + public int GetNumberOfValues() + { return GetNumberOfValues_19(); } + + private native void SetTuple_20(int id0,int id1,vtkAbstractArray id2); + public void SetTuple(int id0,int id1,vtkAbstractArray id2) + { SetTuple_20(id0,id1,id2); } + + private native void InsertTuple_21(int id0,int id1,vtkAbstractArray id2); + public void InsertTuple(int id0,int id1,vtkAbstractArray id2) + { InsertTuple_21(id0,id1,id2); } + + private native void InsertTuples_22(vtkIdList id0,vtkIdList id1,vtkAbstractArray id2); + public void InsertTuples(vtkIdList id0,vtkIdList id1,vtkAbstractArray id2) + { InsertTuples_22(id0,id1,id2); } + + private native void InsertTuples_23(int id0,int id1,int id2,vtkAbstractArray id3); + public void InsertTuples(int id0,int id1,int id2,vtkAbstractArray id3) + { InsertTuples_23(id0,id1,id2,id3); } + + private native int InsertNextTuple_24(int id0,vtkAbstractArray id1); + public int InsertNextTuple(int id0,vtkAbstractArray id1) + { return InsertNextTuple_24(id0,id1); } + + private native void GetTuples_25(vtkIdList id0,vtkAbstractArray id1); + public void GetTuples(vtkIdList id0,vtkAbstractArray id1) + { GetTuples_25(id0,id1); } + + private native void GetTuples_26(int id0,int id1,vtkAbstractArray id2); + public void GetTuples(int id0,int id1,vtkAbstractArray id2) + { GetTuples_26(id0,id1,id2); } + + private native boolean HasStandardMemoryLayout_27(); + public boolean HasStandardMemoryLayout() + { return HasStandardMemoryLayout_27(); } + + private native void DeepCopy_28(vtkAbstractArray id0); + public void DeepCopy(vtkAbstractArray id0) + { DeepCopy_28(id0); } + + private native void InterpolateTuple_29(int id0,int id1,vtkAbstractArray id2,int id3,vtkAbstractArray id4,double id5); + public void InterpolateTuple(int id0,int id1,vtkAbstractArray id2,int id3,vtkAbstractArray id4,double id5) + { InterpolateTuple_29(id0,id1,id2,id3,id4,id5); } + + private native void Squeeze_30(); + public void Squeeze() + { Squeeze_30(); } + + private native int Resize_31(int id0); + public int Resize(int id0) + { return Resize_31(id0); } + + private native void Reset_32(); + public void Reset() + { Reset_32(); } + + private native int GetSize_33(); + public int GetSize() + { return GetSize_33(); } + + private native int GetMaxId_34(); + public int GetMaxId() + { return GetMaxId_34(); } + + private native int GetActualMemorySize_35(); + public int GetActualMemorySize() + { return GetActualMemorySize_35(); } + + private native void SetName_36(String id0); + public void SetName(String id0) + { SetName_36(id0); } + + private native String GetName_37(); + public String GetName() + { return GetName_37(); } + + private native String GetDataTypeAsString_38(); + public String GetDataTypeAsString() + { return GetDataTypeAsString_38(); } + + private native long CreateArray_39(int id0); + public vtkAbstractArray CreateArray(int id0) { + long temp = CreateArray_39(id0); + + if (temp == 0) return null; + return (vtkAbstractArray)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); +} + + private native int IsNumeric_40(); + public int IsNumeric() + { return IsNumeric_40(); } + + private native long NewIterator_41(); + public vtkArrayIterator NewIterator() { + long temp = NewIterator_41(); + + if (temp == 0) return null; + return (vtkArrayIterator)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); +} + + private native int GetDataSize_42(); + public int GetDataSize() + { return GetDataSize_42(); } + + private native void DataChanged_43(); + public void DataChanged() + { DataChanged_43(); } + + private native void ClearLookup_44(); + public void ClearLookup() + { ClearLookup_44(); } + + private native void GetProminentComponentValues_45(int id0,vtkVariantArray id1,double id2,double id3); + public void GetProminentComponentValues(int id0,vtkVariantArray id1,double id2,double id3) + { GetProminentComponentValues_45(id0,id1,id2,id3); } + + private native long GetInformation_46(); + public vtkInformation GetInformation() { + long temp = GetInformation_46(); + + if (temp == 0) return null; + return (vtkInformation)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); +} + + private native boolean HasInformation_47(); + public boolean HasInformation() + { return HasInformation_47(); } + + private native int CopyInformation_48(vtkInformation id0,int id1); + public int CopyInformation(vtkInformation id0,int id1) + { return CopyInformation_48(id0,id1); } + + private native long GUI_HIDE_49(); + public vtkInformationIntegerKey GUI_HIDE() { + long temp = GUI_HIDE_49(); + + if (temp == 0) return null; + return (vtkInformationIntegerKey)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); +} + + private native long PER_COMPONENT_50(); + public vtkInformationInformationVectorKey PER_COMPONENT() { + long temp = PER_COMPONENT_50(); + + if (temp == 0) return null; + return (vtkInformationInformationVectorKey)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); +} + + private native long PER_FINITE_COMPONENT_51(); + public vtkInformationInformationVectorKey PER_FINITE_COMPONENT() { + long temp = PER_FINITE_COMPONENT_51(); + + if (temp == 0) return null; + return (vtkInformationInformationVectorKey)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); +} + + private native void Modified_52(); + public void Modified() + { Modified_52(); } + + private native long DISCRETE_VALUES_53(); + public vtkInformationVariantVectorKey DISCRETE_VALUES() { + long temp = DISCRETE_VALUES_53(); + + if (temp == 0) return null; + return (vtkInformationVariantVectorKey)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); +} + + private native long DISCRETE_VALUE_SAMPLE_PARAMETERS_54(); + public vtkInformationDoubleVectorKey DISCRETE_VALUE_SAMPLE_PARAMETERS() { + long temp = DISCRETE_VALUE_SAMPLE_PARAMETERS_54(); + + if (temp == 0) return null; + return (vtkInformationDoubleVectorKey)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); +} + + private native int GetMaxDiscreteValues_55(); + public int GetMaxDiscreteValues() + { return GetMaxDiscreteValues_55(); } + + private native void SetMaxDiscreteValues_56(int id0); + public void SetMaxDiscreteValues(int id0) + { SetMaxDiscreteValues_56(id0); } + + private native int GetArrayType_57(); + public int GetArrayType() + { return GetArrayType_57(); } + + public vtkAbstractArray() { super(); } + + public vtkAbstractArray(long id) { super(id); } + +}