Search Results
OK to copy?
Examples 1 through 10 of
45 (0.0020 seconds)
Class:
org.springframework.core.io.UrlResource
©,
Rating:
0% of 0,
C1
Class: com.technoetic.xplanner.wiki.GenericWikiAdapter ©, Rating: 0% of 0, C2
Class: org.apache.batik.transcoder.image.InputStreamTest ©, Rating: 0% of 0, C1
Class: org.apache.batik.transcoder.image.ReaderTest ©, Rating: 0% of 0, C1
Class: org.apache.batik.dom.HasChildNodesTest ©, Rating: 0% of 0, C1
Class: org.apache.batik.dom.GetElementsByTagNameNSTest ©, Rating: 0% of 0, C2
Class: org.apache.batik.dom.NullNamespaceTest ©, Rating: 0% of 0, C1
Class: org.apache.batik.dom.RemoveAttributeTest ©, Rating: 0% of 0, C1
Class: org.apache.batik.dom.svg.CloneNodeTest ©, Rating: 0% of 0, C2
Class: org.apache.batik.dom.AppendChildTest ©, Rating: 0% of 0, C1
57
58 public InputStream getInputStream() throws IOException {
59 return this.url.openStream();
60 }
61
Class: com.technoetic.xplanner.wiki.GenericWikiAdapter ©, Rating: 0% of 0, C2
57 try {
58 URL url = new URL(formatUrl(wikiWord, existingTopicUrlPattern));
59 InputStream page = url.openStream();
60 BufferedReader reader = new BufferedReader(new InputStreamReader(page));
61 try {
Class: org.apache.batik.transcoder.image.InputStreamTest ©, Rating: 0% of 0, C1
088 try {
089 URL url = resolveURL(inputURI);
090 InputStream istream = url.openStream();
091 TranscoderInput input = new TranscoderInput(istream);
092 input.setURI(url.toString()); // Needed for external resources
Class: org.apache.batik.transcoder.image.ReaderTest ©, Rating: 0% of 0, C1
089 try {
090 URL url = resolveURL(inputURI);
091 Reader reader = new InputStreamReader(url.openStream());
092 TranscoderInput input = new TranscoderInput(reader);
093 input.setURI(url.toString()); // Needed for external resources
Class: org.apache.batik.dom.HasChildNodesTest ©, Rating: 0% of 0, C1
095 File f = (new File(testFileName));
096 URL url = f.toURL();
097 Document doc = df.createDocument(null,
098 rootTag,
099 url.toString(),
Class: org.apache.batik.dom.GetElementsByTagNameNSTest ©, Rating: 0% of 0, C2
088 File f = (new File(testFileName));
089 URL url = f.toURL();
090 Document doc = df.createDocument(null,
091 rootTag,
092 url.toString(),
Class: org.apache.batik.dom.NullNamespaceTest ©, Rating: 0% of 0, C1
095 File f = (new File(testFileName));
096 URL url = f.toURL();
097 Document doc = df.createDocument(null,
098 rootTag,
099 url.toString(),
Class: org.apache.batik.dom.RemoveAttributeTest ©, Rating: 0% of 0, C1
098 File f = (new File(testFileName));
099 URL url = f.toURL();
100 Document doc = df.createDocument(null,
101 rootTag,
102 url.toString(),
Class: org.apache.batik.dom.svg.CloneNodeTest ©, Rating: 0% of 0, C2
088 File f = (new File(testFileName));
089 URL url = f.toURL();
090 Document doc = df.createDocument(url.toString(),
091 url.openStream());
092
Class: org.apache.batik.dom.AppendChildTest ©, Rating: 0% of 0, C1