Package com.squareup.ideaplugin.dagger.handler

Examples of com.squareup.ideaplugin.dagger.handler.FieldInjectToProvidesHandler


      PsiField fieldElement = (PsiField) element;
      PsiTypeElement typeElement = fieldElement.getTypeElement();

      if (PsiConsultantImpl.hasAnnotation(element, CLASS_INJECT) && typeElement != null) {
        return new LineMarkerInfo<PsiElement>(element, typeElement.getTextRange(), ICON, UPDATE_ALL,
            null, new FieldInjectToProvidesHandler(), LEFT);
      }
    }

    return null;
  }
View Full Code Here

TOP

Related Classes of com.squareup.ideaplugin.dagger.handler.FieldInjectToProvidesHandler

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.