Searched defs:getContent (Results 1 - 6 of 6) 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.java454 public final Object getContent() throws IOException { method in class:URL
455 return openConnection().getContent();
459 * Equivalent to {@code openConnection().getContent(types)}.
462 public final Object getContent(Class[] types) throws IOException { method in class:URL
463 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);
1016 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
/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.java297 public Object getContent() throws IOException { method in class:JarURLConnectionImpl
303 return super.getContent();

Completed in 386 milliseconds