Seperate between package objects

Is it possible to get a dividing line between package objects? It would not be inserted into the code, but rather be a visual feature of the designer.

e.g.

Code:
PROCEDURE send_email(p_email_msg_body    VARCHAR2,
                       p_email_msg_subject VARCHAR2);
--------------------------------------------------------------
 FUNCTION report_for(p_importDate IN DATE) RETURN VARCHAR2;
--------------------------------------------------------------
 PROCEDURE process_file;
 
Back
Top