Home | History | Annotate | Download | only in utils

Lines Matching defs:href

39  * @see <a href="http://www.w3.org/TR/xml-stylesheet/">Associating Style Sheets with XML documents, Version 1.0</a>
67 * Get the object that will be used to resolve URIs in href
79 * Get the object that will be used to resolve URIs in href
138 * @see <a href="http://www.w3.org/TR/xml-stylesheet/">Associating Style Sheets with XML documents, Version 1.0</a>
146 String href = null; // CDATA #REQUIRED
177 else if (name.equals("href"))
183 href = token;
187 // If the href value has parameters to be passed to a
190 // the href value. Without this check, we would move on
197 href = href + token + tokenizer.nextToken();
209 href = href.substring(1, href.length() - 1);
215 source = m_uriResolver.resolve(href, m_baseID);
219 href = SystemIDResolver.getAbsoluteURI(href, m_baseID);
220 source = new SAXSource(new InputSource(href));
266 && (null != href))