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

/libcore/ojluni/src/main/java/java/net/
H A DContentHandler.java36 * {@code getContent} method in this class directly. Instead, an
37 * application calls the {@code getContent} method in class
45 * {@code getContent} method is called to create the object.
63 * @see java.net.ContentHandler#getContent(java.net.URLConnection)
65 * @see java.net.URL#getContent()
67 * @see java.net.URLConnection#getContent()
81 abstract public Object getContent(URLConnection urlc) throws IOException; method in class:ContentHandler
88 * The default implementation of this method should call getContent()
100 public Object getContent(URLConnection urlc, Class[] classes) throws IOException { method in class:ContentHandler
101 Object obj = getContent(url
[all...]
H A DURL.java1064 * openConnection().getContent()
1069 * @see java.net.URLConnection#getContent()
1071 public final Object getContent() throws java.io.IOException { method in class:URL
1072 return openConnection().getContent();
1078 * openConnection().getContent(Class[])
1086 * @see java.net.URLConnection#getContent(Class[])
1089 public final Object getContent(Class[] classes) method in class:URL
1091 return openConnection().getContent(classes);
H A DURLConnection.java98 * <li>{@code getContent}
116 * {@code getContent} method to determine the type of the remote
124 * methods: {@code getInputStream} and {@code getContent},
141 * @see java.net.URLConnection#getContent()
724 public Object getContent() throws IOException { method in class:URLConnection
729 return getContentHandler().getContent(this);
746 * @see java.net.URLConnection#getContent()
748 * @see java.net.URLConnection#getContent(java.lang.Class[])
752 public Object getContent(Class[] classes) throws IOException { method in class:URLConnection
757 return getContentHandler().getContent(thi
1776 public Object getContent(URLConnection uc) throws IOException { method in class:UnknownContentHandler
[all...]
/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/ojluni/src/main/java/sun/security/pkcs/
H A DContentInfo.java157 public DerValue getContent() { method in class:ContentInfo
/libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
H A DJarURLConnection.java190 public Object getContent() throws IOException { method in class:JarURLConnection
197 result = super.getContent();

Completed in 155 milliseconds