Changeset 1504 for trunk/applications/NXconvertpy/src/org/nexusformat/nxvalidate/NXValidateDialog.java
- Timestamp:
- 13/08/10 16:34:17 (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/applications/NXconvertpy/src/org/nexusformat/nxvalidate/NXValidateDialog.java
r1498 r1504 21 21 22 22 private File nxs = null; 23 private File nxd c= null;23 private File nxdl = null; 24 24 private boolean OKButtonUsed = false; 25 25 /** Creates new form NXLoadFilesDialog */ … … 134 134 135 135 if (returnVal == jFileChooser1.APPROVE_OPTION) { 136 nxd c= jFileChooser1.getSelectedFile();137 nxdcTextField.setText(nxd c.getAbsolutePath());138 nxdcTextField.setToolTipText(nxd c.getAbsolutePath());136 nxdl = jFileChooser1.getSelectedFile(); 137 nxdcTextField.setText(nxdl.getAbsolutePath()); 138 nxdcTextField.setToolTipText(nxdl.getAbsolutePath()); 139 139 } else { 140 nxd c= null;140 nxdl = null; 141 141 } 142 142 … … 160 160 161 161 162 public File getNXD CFile(){163 return nxd c;164 } 165 166 public void setNXD CFile(File file){167 nxd c= file;168 nxdcTextField.setText(nxd c.getAbsolutePath());162 public File getNXDLFile(){ 163 return nxdl; 164 } 165 166 public void setNXDLFile(File file){ 167 nxdl = file; 168 nxdcTextField.setText(nxdl.getAbsolutePath()); 169 169 } 170 170
Note: See TracChangeset
for help on using the changeset viewer.
