/*
- * Copyright 2000-2009 JetBrains s.r.o.
+ * Copyright 2000-2014 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-
package com.intellij.facet.ui;
import org.jetbrains.annotations.Nullable;
*/
public class ValidationResult {
public static final ValidationResult OK = new ValidationResult(null, null);
+
private final String myErrorMessage;
private final FacetConfigurationQuickFix myQuickFix;
this(errorMessage, null);
}
- public ValidationResult(String errorMessage, final @Nullable FacetConfigurationQuickFix quickFix) {
+ public ValidationResult(String errorMessage, @Nullable FacetConfigurationQuickFix quickFix) {
myErrorMessage = errorMessage;
myQuickFix = quickFix;
}