Searched defs:systemId (Results 1 - 25 of 185) sorted by relevance

12345678

/openjdk7/jaxp/src/javax/xml/transform/
H A DSource.java42 * @param systemId The system identifier as a URL string.
44 public void setSystemId(String systemId); argument
H A DResult.java75 * @param systemId The system identifier as a URI string.
77 public void setSystemId(String systemId); argument
/openjdk7/jaxp/src/org/xml/sax/
H A DEntityResolver.java70 * public InputSource resolveEntity (String publicId, String systemId)
72 * if (systemId.equals("http://www.myhost.com/today")) {
125 * @param systemId The system identifier of the external entity
138 String systemId)
137 resolveEntity(String publicId, String systemId) argument
H A DDTDHandler.java86 * <p>At least one of publicId and systemId must be non-null.
97 * @param systemId The notation's system identifier, or null if
106 String systemId)
128 * @param systemId The entity's system identifier.
135 String systemId,
104 notationDecl(String name, String publicId, String systemId) argument
133 unparsedEntityDecl(String name, String publicId, String systemId, String notationName) argument
H A DParser.java214 * parse(new InputSource(systemId));
220 * @param systemId The system identifier (URI).
228 public abstract void parse (String systemId) argument
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DXmlResolver.java41 public InputSource resolveEntity(String publicId, String systemId) { argument
42 String schemaName = systemId.substring(systemId.lastIndexOf("/"));
44 if(systemId.startsWith("http://java.sun.com/xml/ns/jdbc")) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/
H A DSDDocumentResolver.java32 * Resolves a systemId to {@link SDDocument}
38 * returns {@link SDDocument} for the give systemId.
40 * @param systemId document's systemId
41 * @return document for the systemId, null if it cannot resolve.
43 @Nullable SDDocument resolve(String systemId); argument
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DNodeInfo.java44 * <code>systemId</code> returns the system id of the current
50 public static String systemId(ExpressionContext context) method in class:NodeInfo
64 * <code>systemId</code> returns the system id of the node passed as
71 public static String systemId(NodeList nodeList) method in class:NodeInfo
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXMLNotationDecl.java78 /** systemId */
79 public String systemId; field in class:XMLNotationDecl
81 /** base systemId */
93 * @param systemId
95 public void setValues(String name, String publicId, String systemId, String baseSystemId) { argument
98 this.systemId = systemId;
108 this.systemId = null;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DDOMInputSource.java43 public DOMInputSource(Node node, String systemId) { argument
44 super(null, systemId, null);
H A DXMLInputSourceAdaptor.java95 public void setSystemId(String systemId) { argument
96 fSource.setSystemId(systemId);
/openjdk7/jaxp/src/com/sun/xml/internal/stream/dtd/nonvalidating/
H A DXMLNotationDecl.java37 /** systemId */
38 public String systemId; field in class:XMLNotationDecl
40 /** base systemId */
52 * @param systemId
54 public void setValues(String name, String publicId, String systemId, String baseSystemId) { argument
57 this.systemId = systemId;
67 this.systemId = null;
/openjdk7/jaxp/src/javax/xml/transform/dom/
H A DDOMResult.java52 * <code>systemId</code>
71 * <code>systemId</code>
94 * @param systemId The system identifier which may be used in association with this node.
96 public DOMResult(Node node, String systemId) { argument
99 setSystemId(systemId);
121 * <p><code>systemId</code> will be set to <code>null</code>.</p>
169 * then the behavior is the same as calling {@link #DOMResult(Node node, String systemId)},
174 * @param systemId The system identifier which may be used in association with this node.
183 public DOMResult(Node node, Node nextSibling, String systemId) { argument
200 setSystemId(systemId);
323 setSystemId(String systemId) argument
361 private String systemId = null; field in class:DOMResult
[all...]
/openjdk7/jaxp/src/javax/xml/transform/sax/
H A DSAXResult.java109 * @param systemId The system identifier as a URI string.
111 public void setSystemId(String systemId) { argument
112 this.systemId = systemId;
122 return systemId;
143 private String systemId; field in class:SAXResult
/openjdk7/jaxp/src/javax/xml/transform/stax/
H A DStAXResult.java72 private String systemId = null; field in class:StAXResult
162 * @param systemId Ignored.
167 public void setSystemId(final String systemId) { argument
170 "StAXResult#setSystemId(systemId) cannot set the "
H A DStAXSource.java73 private String systemId = null; field in class:StAXSource
122 systemId = event.getLocation().getSystemId();
162 systemId = xmlStreamReader.getLocation().getSystemId();
207 * @param systemId Ignored.
212 public void setSystemId(final String systemId) { argument
215 "StAXSource#setSystemId(systemId) cannot set the "
234 return systemId;
/openjdk7/jaxp/src/javax/xml/transform/stream/
H A DStreamResult.java85 * @param systemId Must be a String that conforms to the URI syntax.
87 public StreamResult(String systemId) { argument
88 this.systemId = systemId;
154 * @param systemId The system identifier as a URI string.
156 public void setSystemId(String systemId) { argument
157 this.systemId = systemId;
170 this.systemId = f.toURI().toASCIIString();
180 return systemId;
192 private String systemId; field in class:StreamResult
[all...]
/openjdk7/jaxp/src/org/w3c/dom/
H A DDOMImplementation.java69 * @param systemId The external subset system identifier.
84 String systemId)
82 createDocumentType(String qualifiedName, String publicId, String systemId) argument
/openjdk7/jaxp/src/org/w3c/dom/ls/
H A DLSResourceResolver.java95 * @param systemId The system identifier, a URI reference [<a href='http://www.ietf.org/rfc/rfc2396.txt'>IETF RFC 2396</a>], of the
107 String systemId,
104 resolveResource(String type, String namespaceURI, String publicId, String systemId, String baseURI) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/
H A DSAXParseException2.java46 public SAXParseException2(String message, String publicId, String systemId, int lineNumber, int columnNumber) { argument
47 super(message, publicId, systemId, lineNumber, columnNumber);
50 public SAXParseException2(String message, String publicId, String systemId, int lineNumber, int columnNumber, Exception e) { argument
51 super(message, publicId, systemId, lineNumber, columnNumber, e);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/util/
H A DForkEntityResolver.java48 public InputSource resolveEntity(String publicId, String systemId) throws SAXException, IOException { argument
49 InputSource is = lhs.resolveEntity(publicId, systemId);
52 return rhs.resolveEntity(systemId,systemId);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/
H A DDOMLocator.java34 private static final String systemId = "systemid"; field in class:DOMLocator
40 e.setAttributeNS(locationNamespace,"loc:"+systemId,loc.getSystemId());
53 if(DOMUtil.getAttribute(e,locationNamespace,systemId)==null)
64 return DOMUtil.getAttribute(e,locationNamespace,systemId);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/
H A DForkEntityResolver.java48 public InputSource resolveEntity(String publicId, String systemId) throws SAXException, IOException { argument
49 InputSource is = lhs.resolveEntity(publicId, systemId);
52 return rhs.resolveEntity(publicId,systemId);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DExternalEntity.java36 String systemId; // resolved URI (not relative) field in class:ExternalEntity
48 retval = r.resolveEntity(publicId, systemId);
51 retval = Resolver.createInputSource(new URL(systemId), false);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/ast/util/
H A DLocatorImpl.java55 private final String systemId; field in class:LocatorImpl
59 public LocatorImpl(String systemId, int lineNumber, int columnNumber) { argument
60 this.systemId = systemId;
70 return systemId;

Completed in 179 milliseconds

12345678