Home | History | Annotate | Download | only in activitygraphs
      1 /*
      2  * Copyright (C) 2013 Square, Inc.
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  * http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 package com.example.dagger.activitygraphs;
     17 
     18 import android.app.Application;
     19 import android.location.LocationManager;
     20 import dagger.Component;
     21 import javax.inject.Singleton;
     22 
     23 /**
     24  * A component whose lifetime is the life of the application.
     25  */
     26 @Singleton // Constraints this component to one-per-application or unscoped bindings.
     27 @Component(modules = DemoApplicationModule.class)
     28 public interface ApplicationComponent {
     29   // Field injections of any dependencies of the DemoApplication
     30   void inject(DemoApplication application);
     31 
     32   // Exported for child-components.
     33   Application application();
     34   LocationManager locationManager();
     35 }
     36