コード例 #1
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_set_product(
     SWIGTYPE_p_coda_cursor_struct cursor, SWIGTYPE_p_coda_product_struct product)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_set_product(
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor),
       SWIGTYPE_p_coda_product_struct.getCPtr(product));
 }
コード例 #2
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int expression_eval_node(
     SWIGTYPE_p_coda_expression_struct expr, SWIGTYPE_p_coda_cursor_struct cursor)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.expression_eval_node(
       SWIGTYPE_p_coda_expression_struct.getCPtr(expr),
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor));
 }
コード例 #3
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int expression_eval_float(
     SWIGTYPE_p_coda_expression_struct expr, SWIGTYPE_p_coda_cursor_struct cursor, double[] value)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.expression_eval_float(
       SWIGTYPE_p_coda_expression_struct.getCPtr(expr),
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor),
       value);
 }
コード例 #4
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_read_complex_double_split_array(
     SWIGTYPE_p_coda_cursor_struct cursor,
     double[] dst_re,
     double[] dst_im,
     ArrayOrderingEnum array_ordering)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_read_complex_double_split_array(
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), dst_re, dst_im, array_ordering.swigValue());
 }
コード例 #5
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int expression_eval_string(
     SWIGTYPE_p_coda_expression_struct expr,
     SWIGTYPE_p_coda_cursor_struct cursor,
     String[] value,
     int[] length)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.expression_eval_string(
       SWIGTYPE_p_coda_expression_struct.getCPtr(expr),
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor),
       value,
       length);
 }
コード例 #6
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_get_type(
     SWIGTYPE_p_coda_cursor_struct cursor, SWIGTYPE_p_coda_type_struct type)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_get_type(SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), type);
 }
コード例 #7
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_get_record_field_index_from_name(
     SWIGTYPE_p_coda_cursor_struct cursor, String name, int[] index)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_get_record_field_index_from_name(
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), name, index);
 }
コード例 #8
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static String helper_coda_cursor_read_string(SWIGTYPE_p_coda_cursor_struct cursor) {
   return codacJNI.helper_coda_cursor_read_string(SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor));
 }
コード例 #9
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_goto_available_union_field(SWIGTYPE_p_coda_cursor_struct cursor)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_goto_available_union_field(
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor));
 }
コード例 #10
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_read_bytes(
     SWIGTYPE_p_coda_cursor_struct cursor, byte[] dst, long offset, long length)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_read_bytes(
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), dst, offset, length);
 }
コード例 #11
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_read_double_partial_array(
     SWIGTYPE_p_coda_cursor_struct cursor, int offset, int length, double[] dst)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_read_double_partial_array(
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), offset, length, dst);
 }
コード例 #12
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_has_attributes(
     SWIGTYPE_p_coda_cursor_struct cursor, int[] has_attributes)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_has_attributes(
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), has_attributes);
 }
コード例 #13
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_get_array_dim(
     SWIGTYPE_p_coda_cursor_struct cursor, int[] num_dims, int[] dim)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_get_array_dim(
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), num_dims, dim);
 }
コード例 #14
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_use_base_type_of_special_type(SWIGTYPE_p_coda_cursor_struct cursor)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_use_base_type_of_special_type(
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor));
 }
コード例 #15
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_has_ascii_content(
     SWIGTYPE_p_coda_cursor_struct cursor, int[] has_ascii_content)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_has_ascii_content(
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), has_ascii_content);
 }
コード例 #16
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_goto_parent(SWIGTYPE_p_coda_cursor_struct cursor)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_goto_parent(SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor));
 }
コード例 #17
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_goto_array_element_by_index(
     SWIGTYPE_p_coda_cursor_struct cursor, int index) throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_goto_array_element_by_index(
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), index);
 }
コード例 #18
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_goto_array_element(
     SWIGTYPE_p_coda_cursor_struct cursor, int num_subs, int[] subs)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_goto_array_element(
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), num_subs, subs);
 }
コード例 #19
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_get_record_field_available_status(
     SWIGTYPE_p_coda_cursor_struct cursor, int index, int[] available)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_get_record_field_available_status(
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), index, available);
 }
コード例 #20
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_get_string_length(SWIGTYPE_p_coda_cursor_struct cursor, int[] length)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_get_string_length(SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), length);
 }
コード例 #21
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_get_available_union_field_index(
     SWIGTYPE_p_coda_cursor_struct cursor, int[] index) throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_get_available_union_field_index(
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), index);
 }
コード例 #22
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_get_bit_size(SWIGTYPE_p_coda_cursor_struct cursor, long[] bit_size)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_get_bit_size(SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), bit_size);
 }
コード例 #23
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_read_float(SWIGTYPE_p_coda_cursor_struct cursor, float[] dst)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_read_float(SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), dst);
 }
コード例 #24
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_goto(SWIGTYPE_p_coda_cursor_struct cursor, String path)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_goto(SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), path);
 }
コード例 #25
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_read_float_array(
     SWIGTYPE_p_coda_cursor_struct cursor, float[] dst, ArrayOrderingEnum array_ordering)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_read_float_array(
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), dst, array_ordering.swigValue());
 }
コード例 #26
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_get_file_byte_offset(
     SWIGTYPE_p_coda_cursor_struct cursor, long[] byte_offset)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_get_file_byte_offset(
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), byte_offset);
 }
コード例 #27
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_read_complex_double_split(
     SWIGTYPE_p_coda_cursor_struct cursor, double[] dst_re, double[] dst_im)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_read_complex_double_split(
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), dst_re, dst_im);
 }
コード例 #28
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_get_format(SWIGTYPE_p_coda_cursor_struct cursor, int[] format)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_get_format(SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), format);
 }
コード例 #29
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_get_num_elements(
     SWIGTYPE_p_coda_cursor_struct cursor, int[] num_elements)
     throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_get_num_elements(
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), num_elements);
 }
コード例 #30
0
ファイル: codac.java プロジェクト: gerritholl/coda
 public static int cursor_goto_record_field_by_name(
     SWIGTYPE_p_coda_cursor_struct cursor, String name) throws nl.stcorp.coda.CodaException {
   return codacJNI.cursor_goto_record_field_by_name(
       SWIGTYPE_p_coda_cursor_struct.getCPtr(cursor), name);
 }