/** {@inheritDoc} */ public boolean isValid() { if (mProjectConfig != null) { // check if all check configurations resolve List<FileSet> fileSets = mProjectConfig.getFileSets(); for (FileSet fileset : fileSets) { ICheckConfiguration checkConfig = fileset.getCheckConfig(); if (checkConfig != null) { try { checkConfig.getCheckstyleConfiguration(); } catch (CheckstylePluginException e) { setErrorMessage( NLS.bind( Messages.errorCannotResolveCheckLocation, checkConfig.getLocation(), checkConfig.getName())); return false; } } } } setErrorMessage(null); return true; }
/** * Creates the file sets area. * * @param fileSetsContainer the container to add the file sets area to */ private Control createFileSetsArea(Composite fileSetsContainer) throws CheckstylePluginException { Control[] controls = fileSetsContainer.getChildren(); for (int i = 0; i < controls.length; i++) { controls[i].dispose(); } if (mProjectConfig.isUseSimpleConfig()) { mFileSetsEditor = new SimpleFileSetsEditor(this); } else { mFileSetsEditor = new ComplexFileSetsEditor(this); } mFileSetsEditor.setFileSets(mProjectConfig.getFileSets()); Control editor = mFileSetsEditor.createContents(mFileSetsContainer); fileSetsContainer.setLayout(new FormLayout()); FormData fd = new FormData(); fd.left = new FormAttachment(0); fd.top = new FormAttachment(0); fd.right = new FormAttachment(100); fd.bottom = new FormAttachment(100); editor.setLayoutData(fd); return fileSetsContainer; }