• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.systemui.animation
2 
3 /**
4  * A base class to easily create an implementation of [ActivityLaunchAnimator.Controller] which
5  * delegates most of its call to [delegate]. This is mostly useful for Java code which can't easily
6  * create such a delegated class.
7  */
8 open class DelegateLaunchAnimatorController(
9     protected val delegate: ActivityLaunchAnimator.Controller
10 ) : ActivityLaunchAnimator.Controller by delegate