コード例 #1
0
 public boolean isProfileDefined() {
   return myInspectionProfile != null && myInspectionProfile.isEditable();
 }
コード例 #2
0
 public void updateCurrentProfile() {
   final String name = myInspectionProfile.getName();
   myInspectionProfile =
       (InspectionProfile) myInspectionProfile.getProfileManager().getProfile(name);
 }
コード例 #3
0
 @Nullable
 public String getCurrentProfileName() {
   return myInspectionProfile == null ? null : myInspectionProfile.getDisplayName();
 }