Ejemplo n.º 1
0
 public void canApply() throws ConfigurationException {
   for (ModuleConfigurationEditor editor : myEditors) {
     if (editor instanceof ModuleElementsEditor) {
       ((ModuleElementsEditor) editor).canApply();
     }
   }
 }
Ejemplo n.º 2
0
 @Override
 public void canApply() throws ConfigurationException {
   super.canApply();
   if (myClasspathFormatPanel != null) {
     final String storageID = myClasspathFormatPanel.getSelectedClasspathFormat();
     ClasspathStorage.getProvider(storageID).assertCompatible(getModel());
   }
 }