Searched refs:systemId (Results 1 - 25 of 226) sorted by relevance

12345678910

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/sax/
H A DSystemIdResolver.java69 public static boolean isAbsoluteURI(String systemId) { argument
70 if (systemId == null) {
74 if (isWindowsAbsolutePath(systemId)) {
78 final int fragmentIndex = systemId.indexOf('#');
79 final int queryIndex = systemId.indexOf('?');
80 final int slashIndex = systemId.indexOf('/');
81 final int colonIndex = systemId.indexOf(':');
83 int index = systemId.length() -1;
96 public static boolean isAbsolutePath(String systemId) { argument
97 if(systemId
104 isWindowsAbsolutePath(String systemId) argument
137 getAbsoluteURI(String systemId) argument
[all...]
/openjdk7/jaxp/src/javax/xml/transform/stream/
H A DStreamSource.java92 * @param systemId Must be a String that conforms to the URI syntax.
94 public StreamSource(InputStream inputStream, String systemId) { argument
96 setSystemId(systemId);
122 * @param systemId Must be a String that conforms to the URI syntax.
124 public StreamSource(Reader reader, String systemId) { argument
126 setSystemId(systemId);
132 * @param systemId Must be a String that conforms to the URI syntax.
134 public StreamSource(String systemId) { argument
135 this.systemId = systemId;
235 setSystemId(String systemId) argument
273 private String systemId; field in class:StreamSource
[all...]
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/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/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/jaxp/src/com/sun/org/apache/xml/internal/serializer/utils/
H A DSystemIDResolver.java111 * Return true if the systemId denotes an absolute URI .
113 * @param systemId The systemId string
114 * @return true if the systemId is an an absolute URI
116 public static boolean isAbsoluteURI(String systemId) argument
124 * %REVIEW% Can we assume here that systemId is a valid URI?
129 if(isWindowsAbsolutePath(systemId)){
133 final int fragmentIndex = systemId.indexOf('#');
134 final int queryIndex = systemId.indexOf('?');
135 final int slashIndex = systemId
157 isAbsolutePath(String systemId) argument
172 isWindowsAbsolutePath(String systemId) argument
225 getAbsoluteURI(String systemId) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DSystemIDResolver.java104 * Return true if the systemId denotes an absolute URI .
106 * @param systemId The systemId string
107 * @return true if the systemId is an an absolute URI
109 public static boolean isAbsoluteURI(String systemId) argument
117 * %REVIEW% Can we assume here that systemId is a valid URI?
122 if(isWindowsAbsolutePath(systemId)){
126 final int fragmentIndex = systemId.indexOf('#');
127 final int queryIndex = systemId.indexOf('?');
128 final int slashIndex = systemId
150 isAbsolutePath(String systemId) argument
165 isWindowsAbsolutePath(String systemId) argument
218 getAbsoluteURI(String systemId) argument
[all...]
H A DSerializableLocatorImpl.java112 return systemId;
163 * @param systemId The new system identifier, or null
167 public void setSystemId (String systemId) argument
169 this.systemId = systemId;
211 private String systemId; field in class:SerializableLocatorImpl
/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;
H A DXMLEntityDecl.java78 /** systemId */
79 public String systemId; field in class:XMLEntityDecl
106 * @param systemId
112 public void setValues(String name, String publicId, String systemId, argument
115 setValues(name, publicId, systemId, baseSystemId, notation, null, isPE, inExternal);
123 * @param systemId
130 public void setValues(String name, String publicId, String systemId, argument
135 this.systemId = systemId;
149 this.systemId
[all...]
/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/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;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DTXWResult.java43 private String systemId; field in class:TXWResult
60 return systemId;
63 public void setSystemId(String systemId) { argument
64 this.systemId = systemId;
/openjdk7/jaxp/src/org/xml/sax/
H A DInputSource.java110 * @param systemId The system identifier (URI).
117 public InputSource (String systemId) argument
119 setSystemId(systemId);
211 * @param systemId The system identifier as a string.
217 public void setSystemId (String systemId) argument
219 this.systemId = systemId;
237 return systemId;
353 private String systemId; field in class:InputSource
H A DSAXParseException.java134 * @param systemId The system identifier of the entity that generated
141 public SAXParseException (String message, String publicId, String systemId, argument
145 init(publicId, systemId, lineNumber, columnNumber);
165 * @param systemId The system identifier of the entity that generated
173 public SAXParseException (String message, String publicId, String systemId, argument
177 init(publicId, systemId, lineNumber, columnNumber);
186 * @param systemId The system identifier of the entity which generated the exception,
191 private void init (String publicId, String systemId, argument
195 this.systemId = systemId;
293 private String systemId; field in class:SAXParseException
[all...]
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
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/wsdl/parser/
H A DXMLEntityResolver.java49 Parser resolveEntity(String publicId,String systemId) argument
56 public final URL systemId; field in class:XMLEntityResolver.Parser
62 public Parser(URL systemId, XMLStreamReader parser) { argument
64 this.systemId = systemId;
72 this.systemId = doc.getSystemId();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DAbstractObjectImpl.java42 private final String systemId; field in class:AbstractObjectImpl
48 this.systemId = loc.getSystemId();
51 /*package*/ AbstractObjectImpl(String systemId, int lineNumber) { argument
52 this.systemId = systemId;
58 loc.setSystemId(systemId);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/
H A DXMLResourceIdentifier.java39 public void setExpandedSystemId(String systemId); argument
45 public void setLiteralSystemId(String systemId); argument
52 public void setBaseSystemId(String systemId); argument
/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/org/xml/sax/helpers/
H A DLocatorImpl.java140 return systemId;
192 * @param systemId The new system identifier, or null
196 public void setSystemId (String systemId) argument
198 this.systemId = systemId;
232 private String systemId; field in class:LocatorImpl
/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/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/tools/internal/xjc/reader/internalizer/
H A DDOMForest.java159 public Document get( String systemId ) {
160 Document doc = core.get(systemId);
162 if( doc==null && systemId.startsWith("file:/") && !systemId.startsWith("file://") ) {
169 doc = core.get( "file://"+systemId.substring(5) );
172 if( doc==null && systemId.startsWith("file:") ) {
175 String systemPath = getPath(systemId);
273 public Document parse( String systemId, boolean root ) throws SAXException, IOException { argument
275 systemId = normalizeSystemId(systemId);
338 getParserHandler( String systemId, boolean root ) argument
365 parse( String systemId, InputSource inputSource, boolean root ) argument
400 normalizeSystemId(String systemId) argument
409 parse( String systemId, XMLStreamReader parser, boolean root ) argument
498 createSAXSource(String systemId) argument
[all...]

Completed in 174 milliseconds

12345678910