Home | History | Annotate | Download | only in domts

Lines Matching refs:scheme

132   public String getResourceURI(String href, String scheme, String contentType) throws
134 if (scheme == null) {
135 throw new NullPointerException("scheme");
137 if ("file".equals(scheme)) {
140 if ("http".equals(scheme)) {
153 throw new DOMTestLoadException(new Exception("Unrecognized URI scheme " +
154 scheme));
157 public String createTempURI(String scheme) throws DOMTestLoadException {
158 if (scheme == null) {
159 throw new NullPointerException("scheme");
161 if ("file".equals(scheme)) {
184 if ("http".equals(scheme)) {
196 throw new DOMTestLoadException(new Exception("Unrecognized URI scheme " +
197 scheme));