Searched defs:tempDir (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/test/javax/swing/JFileChooser/6342301/
H A Dbug6342301.java37 private static String tempDir; field in class:bug6342301
40 tempDir = System.getProperty("java.io.tmpdir");
42 if (tempDir.length() == 0) { //'java.io.tmpdir' isn't guaranteed to be defined
43 tempDir = System.getProperty("user.home");
46 System.out.println("Temp directory: " + tempDir);
55 openChooser.setCurrentDirectory(new File(tempDir));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DMIMEConfig.java55 File tempDir; field in class:MIMEConfig
111 return tempDir;
126 if (tempDir == null && dir != null && !dir.equals("")) {
127 tempDir = new File(dir);
138 File tempFile = (tempDir == null)
140 : File.createTempFile(prefix, suffix, tempDir);
/openjdk7/langtools/test/tools/javac/diags/
H A DExample.java185 File supportDir = new File(tempDir, "support");
195 File classesDir = new File(tempDir, "classes");
291 static File tempDir = new File(System.getProperty("java.io.tmpdir")); field in class:Example
292 static void setTempDir(File tempDir) { argument
293 Example.tempDir = tempDir;

Completed in 72 milliseconds