public void initGroupValues(final boolean useDefault) {
   jCheckBoxCVS.removeActionListener(this);
   jCheckBoxTests.removeActionListener(this);
   vps.register(jCheckBoxCVS, DefaultPropertiesDescriptor.FILTER_USE_STANDARD, useDefault);
   vps.register(jCheckBoxTests, DefaultPropertiesDescriptor.FILTER_EXCLUDE_TESTS, useDefault);
   vps.register(jTextFieldExcludes, DefaultPropertiesDescriptor.FILTER_MORE_EXCLUDES, useDefault);
   this.excludesTranslatedPropertyName =
       VisualPropertySupport.translatePropertyName(
           configuration, DefaultPropertiesDescriptor.FILTER_EXCLUDES, useDefault);
   initTree();
   treeView.setEditable(!useDefault);
   jLabelTree.setEnabled(!useDefault);
   jLabelExcludes.setEnabled(!useDefault);
   jCheckBoxCVS.addActionListener(this);
   jCheckBoxTests.addActionListener(this);
 }