Skip to content

Latest commit

 

History

History
85 lines (37 loc) · 2.34 KB

java_to_erlang.md

File metadata and controls

85 lines (37 loc) · 2.34 KB

Module java_to_erlang

Copyright (c) 2011 Lars-Ake Fredlund

Authors: [Lars-Ake Fredlund (lfredlund@fi.upm.es)](mailto:Lars-Ake Fredlund (lfredlund@fi.upm.es)).

Function Index

compute_class/2
find_constructor/3
find_constructor_with_type/3
find_field/2
find_method/3
find_method_with_type/3
find_static_field/3
find_static_method/4
find_static_method_with_type/4

Function Details

compute_class/2

compute_class(NodeId, ClassArg) -> any()

find_constructor/3

find_constructor(NodeId, ClassName, Args) -> any()

find_constructor_with_type/3

find_constructor_with_type(NodeId, ClassName, ArgTypes) -> any()

find_field/2

find_field(Object, Name) -> any()

find_method/3

find_method(Object, Name, Args) -> any()

find_method_with_type/3

find_method_with_type(Object, Name, ArgTypes) -> any()

find_static_field/3

find_static_field(NodeId, ClassName, Name) -> any()

find_static_method/4

find_static_method(NodeId, ClassName, Name, Args) -> any()

find_static_method_with_type/4

find_static_method_with_type(NodeId, ClassName, Name, ArgTypes) -> any()