Gets the fit builder. @return the fit builder
()
| 2256 | * @return the fit builder |
| 2257 | */ |
| 2258 | public FitBuilder getFitBuilder() { |
| 2259 | if (fitBuilder == null) { |
| 2260 | // BH for now we set lazyGUI false; room for improvement! |
| 2261 | fitBuilder = new FitBuilder(this, false); |
| 2262 | fitBuilder.setFontLevel(FontSizer.getLevel()); |
| 2263 | fitBuilder.setHelpPath("fit_builder_help.html"); //$NON-NLS-1$ |
| 2264 | fitBuilder.autoloadFits(); |
| 2265 | } |
| 2266 | return fitBuilder; |
| 2267 | } |
| 2268 | |
| 2269 | /** |
| 2270 | * Writes text to a file with the specified name. |
no test coverage detected