Searched defs:URL (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DTableExample2.java61 public TableExample2(String URL, String driver, String user, argument
71 JDBCAdapter dt = new JDBCAdapter(URL, driver, user, passwd);
/openjdk7/jdk/test/com/sun/security/auth/module/KeyStoreLoginModule/
H A DReadOnly.java53 private static String URL; field in class:ReadOnly
73 URL = f.toURI().toURL().toString();
95 options.put(O_URL, URL);
H A DOptionTest.java53 private static String URL; field in class:OptionTest
76 URL = f.toURI().toURL().toString();
204 options.put(O_URL, URL);
216 options.put(O_URL, URL);
/openjdk7/jdk/src/share/classes/javax/print/
H A DDocFlavor.java75 * For example the client may have a JPEG encoded image, a URL for
123 * Uniform Resource Locator ({@link java.net.URL URL})
124 * -- The print data consists of the bytes read from the URL location.
129 * When the representation class is a URL, the print service itself accesses
130 * and downloads the document directly from its URL address, without involving
133 * This means you should not use a URL print data flavor to print a
134 * document at a restricted URL that the client can see but the printer cannot
135 * see. This also means you should not use a URL print data flavor to print a
136 * document stored in a local file that is not available at a URL
1050 public static class URL extends DocFlavor { class in class:DocFlavor
1064 public URL (String mimeType) { method in class:DocFlavor.URL
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DURL.java38 * Class <code>URL</code> represents a Uniform Resource
49 * In general, a URL can be broken into several parts. The previous
50 * example of a URL indicates that the protocol to use is
58 * the URL is called the <i>path</i> component.
60 * A URL can optionally specify a "port", which is the
70 * The syntax of <code>URL</code> is defined by <a
78 * A URL may have appended to it a "fragment", also known
85 * This fragment is not technically part of the URL. Rather, it
91 * An application can also specify a "relative URL",
93 * relative to another URL
135 public final class URL implements java.io.Serializable { class in inherits:java.io.Serializable
299 public URL(String protocol, String host, int port, String file) method in class:URL
323 public URL(String protocol, String host, String file) method in class:URL
367 public URL(String protocol, String host, int port, String file, method in class:URL
430 public URL(String spec) throws MalformedURLException { method in class:URL
481 public URL(URL context, String spec) throws MalformedURLException { method in class:URL
505 public URL(URL context, String spec, URLStreamHandler handler) method in class:URL
[all...]
/openjdk7/jdk/src/share/demo/applets/SpreadSheet/
H A DSpreadSheet.java146 if (cells[i][j].type == Cell.URL) {
422 dataStream = new URL(target.app.getDocumentBase(),
459 public static final int URL = 2; field in class:Cell
526 setValue(Cell.URL, s.substring(1));
677 if (this.type == Cell.URL) {
692 case Cell.URL:
741 case Cell.URL:
948 ((SpreadSheet) app).setCurrentValue(Cell.URL, sval.substring(1));
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DBaseRowSet.java84 * connection, it needs to set a property for the JDBC URL that identifies the
89 * set the property for the JDBC URL. Instead, it needs to set the property
366 * The JDBC URL the reader, writer, or both supply to the method
370 * The JDBC URL identifies the driver to be used to make the conndection.
371 * This URL can be found in the documentation supplied by the driver
375 private String URL; field in class:BaseRowSet
743 * Retrieves the JDBC URL that this <code>RowSet</code> object's
751 * @return a <code>String</code> object that contains the JDBC URL
754 * @throws SQLException if an error occurs retrieving the URL value
758 return URL;
[all...]

Completed in 51 milliseconds