Searched defs:getContent (Results 1 - 8 of 8) sorted by relevance

/libcore/luni/src/main/java/java/net/
H A DContentHandler.java28 * @see URL#getContent()
29 * @see URLConnection#getContent()
41 public abstract Object getContent(URLConnection uConn) throws IOException; method in class:ContentHandler
57 public Object getContent(URLConnection uConn, Class[] types) method in class:ContentHandler
59 Object content = getContent(uConn);
H A DURL.java446 public final Object getContent() throws IOException { method in class:URL
447 return openConnection().getContent();
451 * Equivalent to {@code openConnection().getContent(types)}.
454 public final Object getContent(Class[] types) throws IOException { method in class:URL
455 return openConnection().getContent(types);
H A DURLConnection.java188 public Object getContent() throws java.io.IOException { method in class:URLConnection
199 return getContentHandler(contentType).getContent(this);
222 public Object getContent(Class[] types) throws IOException { method in class:URLConnection
233 return getContentHandler(contentType).getContent(this, types);
1017 public Object getContent(URLConnection u) throws IOException { method in class:URLConnection.DefaultContentHandler
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
H A DContentHandlerTest.java30 * java.net.ContentHandler#getContent(java.net.URLConnection,
38 Object content = handler.getContent(conn, classes);
42 content = handler.getContent(conn, classes);
47 content = handler.getContent(conn, classes2);
57 public Object getContent(URLConnection uConn) throws IOException { method in class:ContentHandlerImpl
H A DContentHandlerFactoryTest.java46 con.getContent();
56 con.getContent(new Class[] {});
82 assertNotNull(ch.getContent(url.openConnection()));
134 public Object getContent(URLConnection u) { method in class:ContentHandlerFactoryTest.TestContentHandler
/libcore/luni/src/main/java/org/apache/harmony/security/pkcs7/
H A DContentInfo.java70 public Object getContent() { method in class:ContentInfo
/libcore/luni/src/main/java/libcore/net/url/
H A DJarURLConnectionImpl.java303 public Object getContent() throws IOException { method in class:JarURLConnectionImpl
309 return super.getContent();
/libcore/luni/src/main/java/libcore/net/http/
H A DHttpsURLConnectionImpl.java174 public Object getContent() throws IOException { method in class:HttpsURLConnectionImpl
175 return delegate.getContent();
180 public Object getContent(Class[] types) throws IOException { method in class:HttpsURLConnectionImpl
181 return delegate.getContent(types);

Completed in 199 milliseconds