コード例 #1
0
ファイル: ClasspathEditor.java プロジェクト: novokrest/JBIDEA
 @Override
 public void canApply() throws ConfigurationException {
   super.canApply();
   if (myClasspathFormatPanel != null) {
     final String storageID = myClasspathFormatPanel.getSelectedClasspathFormat();
     ClasspathStorage.getProvider(storageID).assertCompatible(getModel());
   }
 }
コード例 #2
0
ファイル: ClasspathEditor.java プロジェクト: novokrest/JBIDEA
 @Override
 public void apply() throws ConfigurationException {
   if (myClasspathFormatPanel != null) {
     myClasspathFormatPanel.apply();
   }
 }
コード例 #3
0
ファイル: ClasspathEditor.java プロジェクト: novokrest/JBIDEA
 @Override
 public boolean isModified() {
   return super.isModified()
       || (myClasspathFormatPanel != null && myClasspathFormatPanel.isModified());
 }