Package com.squareup.ideaplugin.dagger.handler

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


      // Constructor injection.
      if (methodElement.isConstructor() && PsiConsultantImpl.hasAnnotation(element, CLASS_INJECT)) {
        PsiIdentifier nameIdentifier = methodElement.getNameIdentifier();
        if (nameIdentifier != null) {
          return new LineMarkerInfo<PsiElement>(element, nameIdentifier.getTextRange(), ICON,
              UPDATE_ALL, null, new ConstructorInjectToProvidesHandler(), LEFT);
        }
      }

      // Not a method, is it a Field?
    } else if (element instanceof PsiField) {
View Full Code Here

TOP

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

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.