Searched defs:jfc (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJFileChooser.java1766 public WeakPCL(JFileChooser jfc) { argument
1767 jfcRef = new WeakReference<JFileChooser>(jfc);
1771 JFileChooser jfc = jfcRef.get();
1772 if (jfc == null) {
1778 boolean oldValue = jfc.useFileHiding;
1779 jfc.useFileHiding = !((Boolean)ev.getNewValue()).booleanValue();
1780 jfc.firePropertyChange(FILE_HIDING_CHANGED_PROPERTY, oldValue, jfc.useFileHiding);
/openjdk7/jdk/src/share/classes/sun/print/
H A DServiceDialog.java115 private ValidatingFileChooser jfc; field in class:ServiceDialog
429 ValidatingFileChooser jfc = new ValidatingFileChooser();
430 jfc.setApproveButtonText(getMsg("button.ok"));
431 jfc.setDialogTitle(getMsg("dialog.printtofile"));
432 jfc.setDialogType(JFileChooser.SAVE_DIALOG);
433 jfc.setSelectedFile(fileDest);
435 int returnVal = jfc.showDialog(this, null);
437 fileDest = jfc.getSelectedFile();

Completed in 30 milliseconds