Package de.plushnikov.intellij.lombok.problem

Examples of de.plushnikov.intellij.lombok.problem.ProblemEmptyBuilder


  }

  protected abstract boolean validate(@NotNull PsiAnnotation psiAnnotation, @NotNull PsiField psiField, @NotNull ProblemBuilder builder);

  public final <Psi extends PsiElement> void process(@NotNull PsiField psiField, @NotNull PsiAnnotation psiAnnotation, @NotNull List<Psi> target) {
    if (validate(psiAnnotation, psiField, new ProblemEmptyBuilder())) {
      processIntern(psiField, psiAnnotation, target);
    }
  }
View Full Code Here


  }

  protected abstract boolean validate(@NotNull PsiAnnotation psiAnnotation, @NotNull PsiClass psiClass, @NotNull ProblemBuilder builder);

  public final <Psi extends PsiElement> void process(@NotNull PsiClass psiClass, @NotNull PsiAnnotation psiAnnotation, @NotNull List<Psi> target) {
    if (validate(psiAnnotation, psiClass, new ProblemEmptyBuilder())) {
      processIntern(psiClass, psiAnnotation, target);
    }
  }
View Full Code Here

TOP

Related Classes of de.plushnikov.intellij.lombok.problem.ProblemEmptyBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.