DBA Data[Home] [Help]

PACKAGE: SYS.OWA_IMAGE

Source


1 package OWA_IMAGE is
2 
3    /* The Web Agent can only pass PL/SQL tables of characters, */
4    /* but technically, this should be integers.                */
5    /* PL/SQL will take care of the casting of values.          */
6    type point is table of varchar2(32767) index by binary_integer;
7 
8    NULL_POINT point;
9 
10    function get_x(p in point) return integer;
11    function get_y(p in point) return integer;
12 
13    PRAGMA RESTRICT_REFERENCES(get_x, WNDS, WNPS, RNDS, RNPS);
14    PRAGMA RESTRICT_REFERENCES(get_y, WNDS, WNPS, RNDS, RNPS);
15 
16    PRAGMA RESTRICT_REFERENCES(owa_image, WNDS, RNDS,       RNPS);
17 
18 end;