Sha256: d21f6074cb26ae26b031c7a795125e139246ff27b8faee26a203009f80a58105
Contents?: true
Size: 1.65 KB
Versions: 27
Compression:
Stored size: 1.65 KB
Contents
class AbstractInvocationContext def execute raise NotImplementedError, "method not implemented" end def invoke_static_method(method_name, *args) raise NotImplementedError, "method not implemented" end def get_static_field(field_name) raise NotImplementedError, "method not implemented" end def invoke_instance_method(method_name, *args) raise NotImplementedError, "method not implemented" end def get_instance_field(field_name) raise NotImplementedError, "method not implemented" end def set_instance_field(field_name, value) raise NotImplementedError, "method not implemented" end def create_instance(*args) raise NotImplementedError, "method not implemented" end def get_index(*args) raise NotImplementedError, "method not implemented" end def set_index(*args) raise NotImplementedError, "method not implemented" end def get_size raise NotImplementedError, "method not implemented" end def get_rank raise NotImplementedError, "method not implemented" end def invoke_generic_static_method(method_name, *args) raise NotImplementedError, "method not implemented" end def invoke_generic_method(method_name, *args) raise NotImplementedError, "method not implemented" end def get_enum_item raise NotImplementedError, "method not implemented" end def get_enum_value raise NotImplementedError, "method not implemented" end def get_ref_value raise NotImplementedError, "method not implemented" end def retrieve_array raise NotImplementedError, "method not implemented" end end
Version data entries
27 entries across 27 versions & 1 rubygems