Hi everybody!
I'll try to explain clairly my problem
I have some Objects like:
[size=8pt]
/************* O_Error *******************************/
CREATE OR REPLACE TYPE O_Error AS OBJECT
/**
* Object type to notice about errors.
*/
(cError NUMBER (8), -- Error code
Terror VARCHAR2(4000), -- Error description
/**
* Constructor: initializes to NULL.
*/
CONSTRUCTOR FUNCTION O_Error RETURN SELF AS RESULT
)NOT FINAL ;
CREATE OR REPLACE TYPE BODY O_Error AS
CONSTRUCTOR FUNCTION O_Error RETURN SELF AS RESULT IS
BEGIN
SELF.Cerror := 0;
SELF.Cerror_Ora := 0;
SELF.Terror := NULL;
RETURN;
END;
END;
[/size]
And also I have one TABLE OF type like:
[size=8pt]
/************* T_FriendList *******************************/
CREATE OR REPLACE TYPE T_FriendList AS TABLE OF O_FriendList
/**
* Table with some people information
*
* @see {@link O_FriendList.html O_FriendList}
*/
[/size]
And then I have my procedure like:
[size=8pt]
/**
*
* Procedure that does nothing interesting.
*
* Yeah, this procedure is really unnecessary.
*
* @param In_Who Object type with info about a person
* @param In_Where Object type with info about a situation
* @param Out_FriendList TABLE OF Object type with a list of names
* @param Out_Errors Object type with info about (im)possible errors
*/
PROCEDURE p_myProcedure (In_Who IN O_Who,
In_Where IN O_Where,
Out_FriendList OUT T_FriendList,
Out_Errors OUT O_Error);
[/size]
And I generate documentation (first Types, then Procedure).
And I get something like that:
----------------------------------------------------------
PROCEDURE p_myProcedure (In_Who INO_Who,
In_Where INO_Where,
Out_FriendList OUT T_FriendList,
Out_Errors OUTO_Error)
----------------------------------------------------------
Why it doesn't create the link for the "TABLE OF" type?
Well, I can use "@see", but I would like an "automatic" way to make this link possible!!
So much thanks and best regards,
Donato.
I'll try to explain clairly my problem

I have some Objects like:
[size=8pt]
/************* O_Error *******************************/
CREATE OR REPLACE TYPE O_Error AS OBJECT
/**
* Object type to notice about errors.
*/
(cError NUMBER (8), -- Error code
Terror VARCHAR2(4000), -- Error description
/**
* Constructor: initializes to NULL.
*/
CONSTRUCTOR FUNCTION O_Error RETURN SELF AS RESULT
)NOT FINAL ;
CREATE OR REPLACE TYPE BODY O_Error AS
CONSTRUCTOR FUNCTION O_Error RETURN SELF AS RESULT IS
BEGIN
SELF.Cerror := 0;
SELF.Cerror_Ora := 0;
SELF.Terror := NULL;
RETURN;
END;
END;
[/size]
And also I have one TABLE OF type like:
[size=8pt]
/************* T_FriendList *******************************/
CREATE OR REPLACE TYPE T_FriendList AS TABLE OF O_FriendList
/**
* Table with some people information
*
* @see {@link O_FriendList.html O_FriendList}
*/
[/size]
And then I have my procedure like:
[size=8pt]
/**
*
* Procedure that does nothing interesting.
*
* Yeah, this procedure is really unnecessary.
*
* @param In_Who Object type with info about a person
* @param In_Where Object type with info about a situation
* @param Out_FriendList TABLE OF Object type with a list of names
* @param Out_Errors Object type with info about (im)possible errors
*/
PROCEDURE p_myProcedure (In_Who IN O_Who,
In_Where IN O_Where,
Out_FriendList OUT T_FriendList,
Out_Errors OUT O_Error);
[/size]
And I generate documentation (first Types, then Procedure).
And I get something like that:
----------------------------------------------------------
PROCEDURE p_myProcedure (In_Who IN
In_Where IN
Out_FriendList OUT T_FriendList,
Out_Errors OUT
----------------------------------------------------------
Why it doesn't create the link for the "TABLE OF" type?
Well, I can use "@see", but I would like an "automatic" way to make this link possible!!
So much thanks and best regards,
Donato.