예제 #1
0
 @Override
 public void canApply() throws ConfigurationException {
   super.canApply();
   if (myClasspathFormatPanel != null) {
     final String storageID = myClasspathFormatPanel.getSelectedClasspathFormat();
     ClasspathStorage.getProvider(storageID).assertCompatible(getModel());
   }
 }
예제 #2
0
 @Override
 public void apply() throws ConfigurationException {
   if (myClasspathFormatPanel != null) {
     myClasspathFormatPanel.apply();
   }
 }
예제 #3
0
 @Override
 public boolean isModified() {
   return super.isModified()
       || (myClasspathFormatPanel != null && myClasspathFormatPanel.isModified());
 }