DBA Data[Home] [Help]

XDB.DBMS_XSLPROCESSOR dependencies on DBMS_XMLDOM

Line 6: TYPE Processor IS RECORD (id dbms_xmldom.domtype);

2:
3: /**
4: * Processor interface type
5: */
6: TYPE Processor IS RECORD (id dbms_xmldom.domtype);
7: /* SUBTYPE Processor IS RAW(8); */
8:
9: /**
10: * Stylesheet interface type

Line 12: TYPE Stylesheet IS RECORD (id dbms_xmldom.domtype);

8:
9: /**
10: * Stylesheet interface type
11: */
12: TYPE Stylesheet IS RECORD (id dbms_xmldom.domtype);
13: /* SUBTYPE Stylesheet IS RAW(8); */
14:
15: /**
16: * Internal error

Line 54: FUNCTION processXSL(p Processor, ss Stylesheet, xmldoc dbms_xmldom.DOMDocument)

50:
51: /**
52: * Transforms input XML document using given DOMDocument and stylesheet
53: */
54: FUNCTION processXSL(p Processor, ss Stylesheet, xmldoc dbms_xmldom.DOMDocument)
55: return dbms_xmldom.DOMDocumentFragment;
56:
57: /**
58: * Transforms input XML document using given Doc as CLOB

Line 55: return dbms_xmldom.DOMDocumentFragment;

51: /**
52: * Transforms input XML document using given DOMDocument and stylesheet
53: */
54: FUNCTION processXSL(p Processor, ss Stylesheet, xmldoc dbms_xmldom.DOMDocument)
55: return dbms_xmldom.DOMDocumentFragment;
56:
57: /**
58: * Transforms input XML document using given Doc as CLOB
59: */

Line 61: return dbms_xmldom.DOMDocumentFragment;

57: /**
58: * Transforms input XML document using given Doc as CLOB
59: */
60: FUNCTION processXSL(p Processor, ss Stylesheet, cl clob)
61: return dbms_xmldom.DOMDocumentFragment;
62:
63: /**
64: * Transforms input XML document using given DOMDocument and stylesheet
65: * and writes output to a file

Line 68: xmldoc dbms_xmldom.DOMDocument, dir varchar2, fileName varchar2);

64: * Transforms input XML document using given DOMDocument and stylesheet
65: * and writes output to a file
66: */
67: PROCEDURE processXSL(p Processor, ss Stylesheet,
68: xmldoc dbms_xmldom.DOMDocument, dir varchar2, fileName varchar2);
69:
70: /**
71: * Transforms input XML document using given as URL and stylesheet
72: * and writes output to a file

Line 82: xmldoc dbms_xmldom.DOMDocument, buffer in out varchar2);

78: * Transforms input XML document using given DOMDocument and stylesheet
79: * and writes output to a buffer
80: */
81: PROCEDURE processXSL(p Processor, ss Stylesheet,
82: xmldoc dbms_xmldom.DOMDocument, buffer in out varchar2);
83:
84: /**
85: * Transforms input XML document using given DOMDocument and stylesheet
86: * and writes output to a CLOB

Line 89: xmldoc dbms_xmldom.DOMDocument, cl in out clob);

85: * Transforms input XML document using given DOMDocument and stylesheet
86: * and writes output to a CLOB
87: */
88: PROCEDURE processXSL(p Processor, ss Stylesheet,
89: xmldoc dbms_xmldom.DOMDocument, cl in out clob);
90:
91: /**
92: * Transforms input XML document using given DOMDocument and stylesheet
93: * and writes output to a CLOB. Provides information if style sheet output

Line 97: xmldoc dbms_xmldom.DOMDocument,

93: * and writes output to a CLOB. Provides information if style sheet output
94: * method is xml or not.
95: */
96: PROCEDURE processXSL(p Processor, ss Stylesheet,
97: xmldoc dbms_xmldom.DOMDocument,
98: cl in out clob, isoutputxml out boolean);
99:
100: /**
101: /**

Line 106: xmldf dbms_xmldom.DOMDocumentFragment)

102: * Transforms input XML document fragment using given DOMDocumentFragment and
103: * stylesheet
104: */
105: FUNCTION processXSL(p Processor, ss Stylesheet,
106: xmldf dbms_xmldom.DOMDocumentFragment)
107: return dbms_xmldom.DOMDocumentFragment;
108:
109: /**
110: * Transforms input XML document fragment using given DOMDocumentFragment

Line 107: return dbms_xmldom.DOMDocumentFragment;

103: * stylesheet
104: */
105: FUNCTION processXSL(p Processor, ss Stylesheet,
106: xmldf dbms_xmldom.DOMDocumentFragment)
107: return dbms_xmldom.DOMDocumentFragment;
108:
109: /**
110: * Transforms input XML document fragment using given DOMDocumentFragment
111: * and stylesheet and writes output to a file

Line 114: xmldf dbms_xmldom.DOMDocumentFragment, dir varchar2, fileName varchar2);

110: * Transforms input XML document fragment using given DOMDocumentFragment
111: * and stylesheet and writes output to a file
112: */
113: PROCEDURE processXSL(p Processor, ss Stylesheet,
114: xmldf dbms_xmldom.DOMDocumentFragment, dir varchar2, fileName varchar2);
115:
116: /**
117: * Transforms input XML document fragment using given DOMDocumentFragment
118: * and stylesheet and writes output to a buffer

Line 121: xmldf dbms_xmldom.DOMDocumentFragment, buffer in out varchar2);

117: * Transforms input XML document fragment using given DOMDocumentFragment
118: * and stylesheet and writes output to a buffer
119: */
120: PROCEDURE processXSL(p Processor, ss Stylesheet,
121: xmldf dbms_xmldom.DOMDocumentFragment, buffer in out varchar2);
122:
123: /**
124: * Transforms input XML document fragment using given DOMDocumentFragment
125: * and stylesheet and writes output to a CLOB

Line 128: xmldf dbms_xmldom.DOMDocumentFragment, cl in out clob);

124: * Transforms input XML document fragment using given DOMDocumentFragment
125: * and stylesheet and writes output to a CLOB
126: */
127: PROCEDURE processXSL(p Processor, ss Stylesheet,
128: xmldf dbms_xmldom.DOMDocumentFragment, cl in out clob);
129:
130: /**
131: * Sets errors to be sent to the specified file
132: */

Line 143: FUNCTION newStylesheet(xmldoc dbms_xmldom.DOMDocument, refurl varchar2)

139:
140: /**
141: * Create a new stylesheet using the given DOMDocument and base directory URL
142: */
143: FUNCTION newStylesheet(xmldoc dbms_xmldom.DOMDocument, refurl varchar2)
144: return Stylesheet;
145:
146: /**
147: * Create a new stylesheet using the given input file and base directory URLs

Line 173: FUNCTION transformNode(n dbms_xmldom.DOMNode, ss Stylesheet)

169:
170: /**
171: * Transforms a node in the tree using the given stylesheet
172: */
173: FUNCTION transformNode(n dbms_xmldom.DOMNode, ss Stylesheet)
174: return dbms_xmldom.DOMDocumentFragment;
175:
176: /**
177: * Selects nodes from the tree which match the given pattern

Line 174: return dbms_xmldom.DOMDocumentFragment;

170: /**
171: * Transforms a node in the tree using the given stylesheet
172: */
173: FUNCTION transformNode(n dbms_xmldom.DOMNode, ss Stylesheet)
174: return dbms_xmldom.DOMDocumentFragment;
175:
176: /**
177: * Selects nodes from the tree which match the given pattern
178: */

Line 179: FUNCTION selectNodes(n dbms_xmldom.DOMNode, pattern VARCHAR2,

175:
176: /**
177: * Selects nodes from the tree which match the given pattern
178: */
179: FUNCTION selectNodes(n dbms_xmldom.DOMNode, pattern VARCHAR2,
180: namespace IN VARCHAR2 := NULL)
181: return dbms_xmldom.DOMNodeList;
182:
183: /**

Line 181: return dbms_xmldom.DOMNodeList;

177: * Selects nodes from the tree which match the given pattern
178: */
179: FUNCTION selectNodes(n dbms_xmldom.DOMNode, pattern VARCHAR2,
180: namespace IN VARCHAR2 := NULL)
181: return dbms_xmldom.DOMNodeList;
182:
183: /**
184: * Selects the first node from the tree that matches the given pattern
185: */

Line 186: FUNCTION selectSingleNode(n dbms_xmldom.DOMNode, pattern varchar2,

182:
183: /**
184: * Selects the first node from the tree that matches the given pattern
185: */
186: FUNCTION selectSingleNode(n dbms_xmldom.DOMNode, pattern varchar2,
187: namespace IN VARCHAR2 := NULL)
188: return dbms_xmldom.DOMNode;
189:
190: /**

Line 188: return dbms_xmldom.DOMNode;

184: * Selects the first node from the tree that matches the given pattern
185: */
186: FUNCTION selectSingleNode(n dbms_xmldom.DOMNode, pattern varchar2,
187: namespace IN VARCHAR2 := NULL)
188: return dbms_xmldom.DOMNode;
189:
190: /**
191: * Retrieves the value of the first node from the tree that matches the given
192: * pattern

Line 194: PROCEDURE valueOf(n dbms_xmldom.DOMNode, pattern VARCHAR2, val OUT VARCHAR2,

190: /**
191: * Retrieves the value of the first node from the tree that matches the given
192: * pattern
193: */
194: PROCEDURE valueOf(n dbms_xmldom.DOMNode, pattern VARCHAR2, val OUT VARCHAR2,
195: namespace IN VARCHAR2 := NULL);
196: FUNCTION valueOf(n xmldom.DOMNode, pattern varchar2,
197: namespace IN VARCHAR2 := NULL) return VARCHAR2 ;
198: end dbms_xslprocessor;