Problem of displaying function signature when rollover

Matthew

Member
I have matched a case (bug?) that when I rollover the name of a procedure or function, the function signature shown in the tooltip is truncated, given that a line in the function signature is too many characters.

For example:
FUNCTION f_testing
(
value IN VARCHAR2 -- test long long description in a line .........
, other_para IN VARCHAR2
)
....

Does anyone else match this case?
And is it a bug or limitation on the character count per line?
Thanks.
 
FUNCTION f_testing
(
i_id IN VARCHAR2
, i_name IN VARCHAR2
, i_value_arr IN owa_util.IDENT_ARR DEFAULT g_empty_ident_arr -- coexist with i_desc_arr
, i_desc_arr IN owa_util.VC_ARR DEFAULT g_empty_vc_arr -- coexist with i_value_arr
, i_selected_value_arr IN owa_util.IDENT_ARR DEFAULT g_empty_ident_arr -- same sort order as i_value_arr
, i_first_desc IN VARCHAR2 DEFAULT NULL
, i_first_value IN VARCHAR2 DEFAULT NULL
)
IS
BEGIN
NULL;
END f_testing;

FUNCTION f_call
IS
BEGIN
f_testing();
END f_call;
Above is the complete test case.
And when i rollover the "f_testing()", ths tooltips cannot show the whole function signature of f_testing, but only up to "....i_selected_value_arr IN owa_util.IDENT_ARR DEFAULT g_empty_ident_arr -- same sort order".

Thanks.
 
Back
Top