(String defaultDirectory)
| 112 | |
| 113 | knownProperties.add(FrameManipulation.lockHeight.getName()); |
| 114 | knownProperties.add(FrameManipulation.lockWidth.getName()); |
| 115 | } |
| 116 | |
| 117 | public void setDefaultDirectory(String defaultDirectory) throws IOException { |
| 118 | this.defaultDirectory = new File(defaultDirectory).getCanonicalPath(); |
| 119 | if (!new File(defaultDirectory).exists()) new File(defaultDirectory).mkdir(); |
| 120 | } |
no test coverage detected