Searched refs:imageURL (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/
H A DSplashScreen.java140 * @param imageURL the non-<code>null</code> URL for the new
142 * @throws NullPointerException if {@code imageURL} is <code>null</code>
147 public void setImageURL(URL imageURL) throws NullPointerException, IOException, IllegalStateException { argument
149 URLConnection connection = imageURL.openConnection();
186 this.imageURL = imageURL;
204 if (imageURL == null) {
210 imageURL = new URL("jar:"+(new File(jarName).toURL().toString())+"!/"+fileName);
212 imageURL = new File(fileName).toURL();
222 return imageURL;
378 private URL imageURL; field in class:SplashScreen
[all...]
/openjdk7/langtools/test/tools/javac/diags/
H A DHTMLWriter.java305 * @param imageURL the url for the image source
308 public void writeImage(URL imageURL) throws IOException { argument
309 writeImage(imageURL.toString());

Completed in 75 milliseconds