/openjdk7/jaxp/src/javax/xml/transform/ |
H A D | URIResolver.java | 38 * @param href An href attribute, which may be relative or absolute. 42 * @return A Source object, or null if the href cannot be resolved, 48 public Source resolve(String href, String base) argument
|
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/ |
H A D | DOMCache.java | 53 * @param href The href argument passed to the document function. 56 public DOM retrieveDocument(String baseURI, String href, Translet translet); argument
|
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/ |
H A D | SourceLoader.java | 37 * @param href The URI of the document to load 42 public InputSource loadSource(String href, String context, XSLTC xsltc); argument
|
H A D | Parser.java | 534 * as the 'href' data of the P.I. The extracted DOM representing the 589 private SyntaxTreeNode findStylesheet(SyntaxTreeNode root, String href) { argument 595 if (id.equals(href)) return root; 602 SyntaxTreeNode node = findStylesheet(child, href); 680 initAttrTable("import", new String[] {"href"}); 681 initAttrTable("include", new String[] {"href"}); 1377 String href = null; // URI of stylesheet found 1386 if (token.startsWith("href")) 1387 href = getTokenValue(token); 1396 // Set the target to this PI's href i [all...] |
/openjdk7/jdk/src/share/classes/sun/awt/image/ |
H A D | URLImageSource.java | 73 public URLImageSource(String href) throws MalformedURLException { argument 74 this(new URL(null, href));
|
/openjdk7/jaxp/src/org/w3c/dom/html/ |
H A D | HTMLBaseElement.java | 46 * <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>. 50 * The base URI. See the href attribute definition in HTML 4.0. 53 public void setHref(String href); argument
|
H A D | HTMLAreaElement.java | 47 * <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>. 73 * The URI of the linked resource. See the href attribute definition in 77 public void setHref(String href); argument
|
H A D | HTMLLinkElement.java | 49 * <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>. 67 * The URI of the linked resource. See the href attribute definition in 71 public void setHref(String href); argument
|
H A D | HTMLAnchorElement.java | 46 * <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>. 72 * The URI of the linked resource. See the href attribute definition in 76 public void setHref(String href); argument
|
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/helpers/ |
H A D | BootstrapResolver.java | 52 * <a href="mailto:Norman.Walsh@Sun.COM">Norman.Walsh@Sun.COM</a> 137 public Source resolve(String href, String base) argument 140 String uri = href; 142 int hashPos = href.indexOf("#"); 144 uri = href.substring(0, hashPos); 145 fragment = href.substring(hashPos+1); 149 if (href != null && uriMap.containsKey(href)) { 150 result = (String) uriMap.get(href); 162 url = (href [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/tools/ |
H A D | CatalogResolver.java | 63 * <a href="mailto:Norman.Walsh@Sun.COM">Norman.Walsh@Sun.COM</a> 230 public Source resolve(String href, String base) argument 233 String uri = href; 235 int hashPos = href.indexOf("#"); 237 uri = href.substring(0, hashPos); 238 fragment = href.substring(hashPos+1); 244 result = catalog.resolveURI(href); 258 url = (href.length()==0 ? baseURL : new URL(baseURL, uri)); 266 return resolve(href, absBase); 269 + href [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/ |
H A D | DocumentCache.java | 258 public DOM retrieveDocument(String baseURI, String href, Translet trs) { argument 261 String uri = href; 328 out.print("<tr><td><a href=\""+_URIs[i]+"\">"+
|
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/ |
H A D | TemplatesHandlerImpl.java | 160 * @param href The URI of the document to load 165 public InputSource loadSource(String href, String context, XSLTC xsltc) { argument 168 final Source source = _uriResolver.resolve(href, context);
|
H A D | TransformerFactoryImpl.java | 1165 * @param href The URI of the document to load 1170 public InputSource loadSource(String href, String context, XSLTC xsltc) { argument 1173 final Source source = _uriResolver.resolve(href, context); 1181 final ErrorMsg msg = new ErrorMsg(ErrorMsg.INVALID_URI_ERR, href + "\n" + e.getMessage(), this);
|
H A D | TransformerImpl.java | 1288 * @param href The href argument passed to the document function. 1291 public DOM retrieveDocument(String baseURI, String href, Translet translet) { argument 1294 if (href.length() == 0) { 1295 href = baseURI; 1300 * Incase the _uriResolver.resolve(href,base) is null 1306 Source resolvedSource = _uriResolver.resolve(href, baseURI); 1309 SystemIDResolver.getAbsoluteURI(href, baseURI));
|
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/ |
H A D | HtmlTree.java | 406 * Generates a LINK tag with the rel, type, href and title attributes. 410 * @param href the path for the link 414 public static HtmlTree LINK(String rel, String type, String href, String title) { argument 418 htmltree.addAttr(HtmlAttr.HREF, nullCheck(href));
|
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/ |
H A D | RTFReader.java | 614 static char[] readCharset(java.net.URL href) argument 617 return readCharset(href.openStream());
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/ |
H A D | HTMLGenerator.java | 112 void link(String href, String text) { argument 113 wrap("a href='" + href + "'", "a", text); 766 buf.append("<a href='"); 938 String href = null; 941 href = genPCHref(currentPc + pcRelAddr.getDisplacement()); 943 href = genPCHref(((DirectAddress) addr).getValue()); 946 return href; 966 String href = null; 970 href 2082 genHTMLForHyperlink(String href) argument [all...] |
/openjdk7/jdk/src/share/classes/javax/swing/text/html/ |
H A D | HTMLDocument.java | 3246 String href = (String) attr.getAttribute(HTML.Attribute.HREF); 3247 if (href != null) { 3249 URL newBase = new URL(base, href); 3811 * Adds the CSS stylesheet at <code>href</code> to the known list 3814 void linkCSSStyleSheet(String href) { argument 3817 url = new URL(base, href); 3820 url = new URL(href);
|
H A D | HTMLEditorKit.java | 650 private String href = null; field in class:HTMLEditorKit.LinkController 711 String href = null; 721 href = getMapHREF(editor, hdoc, elem, a, 726 href = (String)anchor.getAttribute 731 if (href != this.href) { 733 fireEvents(editor, hdoc, href, lastElem, e); 734 this.href = href; 735 if (href ! 887 createHyperlinkEvent(JEditorPane html, HTMLDocument hdoc, String href, AttributeSet anchor, Element element, MouseEvent mouseEvent) argument 933 fireEvents(JEditorPane editor, HTMLDocument doc, String href, Element lastElem, MouseEvent mouseEvent) argument 2102 activateLink(String href, HTMLDocument doc, JEditorPane editor, int offset) argument [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/xml/ |
H A D | SchemaParser.java | 1031 String href; field in class:SchemaParser.IncludeState 1040 if (name.equals("href")) { 1041 href = value; 1042 checkUri(href); 1049 if (href == null) 1052 href = resolve(href); 1057 if (href != null) { 1059 include.endInclude(parseable, href, getNs(), startLocation, annotations); 1145 String href; field in class:SchemaParser.ExternalRefState [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xinclude/ |
H A D | XIncludeHandler.java | 83 * in the <code>href</code> attribute of the element. If inclusion succeeds, all 89 * See the <a href="http://www.w3.org/TR/xinclude/">XInclude specification</a> for 138 public final static String XINCLUDE_ATTR_HREF = "href".intern(); 991 new Object[] { attributes.getValue(null, "href") }); 1525 String href = attributes.getValue(XINCLUDE_ATTR_HREF); 1534 if (href == null) { 1535 href = XMLSymbols.EMPTY_STRING; 1537 if (href.length() == 0 && XINCLUDE_PARSE_XML.equals(parse)) { 1543 // all absences of the href attribute as a resource error. 1546 reportResourceError("XMLResourceError", new Object[] { href, reaso 2993 escapeHref(String href) argument [all...] |