Skip to content

Conversation

@lwasylow
Copy link

This is to allow to add a comments into a types bodies as per packages e.g.

   /********************************************************************************
   *  Member function that prints to file all report instances and return filenames
   *
   *  @example
   *  t_reports.print_to_file(print_to_file);
   *
   *  @param p_filename t_varchar2_tab type OUT which contain list of filenames generated
   *
   *  @author Lukasz Wasylow
   *  @created 19/03/2019
   *
   **********************************************************************************/
   MEMBER PROCEDURE print_to_file(p_filename OUT t_varchar2_tab) IS
      v_filename t_varchar2_tab := t_varchar2_tab();
   BEGIN
      FOR instance IN 1 .. self.reporter_instances.COUNT LOOP
         v_filename.EXTEND;
         v_filename(v_filename.LAST) := print_to_file(self.reporter_instances(instance));
      END LOOP;
      p_filename := v_filename;
   END;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant