git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@50874 248e525c-4dfb-0310-94bc-949c084e9493

This commit is contained in:
andrew.gilmore
2012-03-19 11:57:19 +00:00
parent 2a0f4900c3
commit 0e9ca75d77
1587 changed files with 500863 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
CREATE OR REPLACE PACKAGE EFT_NOM.saco_stylesheet$ IS
--
-- Public declared packages
--
PROCEDURE colour_chart(p_index IN NUMBER);
--
PROCEDURE startup;
--
PROCEDURE showabout;
--
PROCEDURE action(p_button IN VARCHAR2 DEFAULT NULL);
--
PROCEDURE querybykey(p_stst_id IN stylesheets.stst_id%TYPE DEFAULT NULL);
--
PROCEDURE process(p_item_type_array IN owa_util.vc_arr,
p_item_name_array IN owa_util.vc_arr,
p_item_prompt_array IN owa_util.vc_arr,
p_item_value_array IN owa_util.vc_arr,
p_button IN VARCHAR2);
--
-- Public declared functions
--
FUNCTION convert_tags_to_css(p_stst_id IN stylesheets.stst_id%TYPE DEFAULT NULL)
RETURN VARCHAR2;
--
END saco_stylesheet$;
/