Package com.squareup.ideaplugin.dagger.handler

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


      }

      // Is it an @Inject-able constructor?
      if (methodElement.isConstructor() && hasAnnotation(element, CLASS_INJECT)) {
        return new LineMarkerInfo<PsiElement>(element, element.getTextRange(), ICON,
            UPDATE_ALL, null, new ConstructorInjectToInjectionPlaceHandler(), LEFT);
      }
    }

    return null;
  }
View Full Code Here

TOP

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

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.