40 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package androidx.fragment.app;
 | |
| 
 | |
| import androidx.lifecycle.ViewModelStore;
 | |
| import java.util.Collection;
 | |
| import java.util.Map;
 | |
| 
 | |
| @Deprecated
 | |
| /* loaded from: classes.dex */
 | |
| public class FragmentManagerNonConfig {
 | |
|     private final Map<String, FragmentManagerNonConfig> mChildNonConfigs;
 | |
|     private final Collection<Fragment> mFragments;
 | |
|     private final Map<String, ViewModelStore> mViewModelStores;
 | |
| 
 | |
|     Map<String, FragmentManagerNonConfig> getChildNonConfigs() {
 | |
|         return this.mChildNonConfigs;
 | |
|     }
 | |
| 
 | |
|     Collection<Fragment> getFragments() {
 | |
|         return this.mFragments;
 | |
|     }
 | |
| 
 | |
|     Map<String, ViewModelStore> getViewModelStores() {
 | |
|         return this.mViewModelStores;
 | |
|     }
 | |
| 
 | |
|     FragmentManagerNonConfig(Collection<Fragment> collection, Map<String, FragmentManagerNonConfig> map, Map<String, ViewModelStore> map2) {
 | |
|         this.mFragments = collection;
 | |
|         this.mChildNonConfigs = map;
 | |
|         this.mViewModelStores = map2;
 | |
|     }
 | |
| 
 | |
|     boolean isRetaining(Fragment fragment) {
 | |
|         Collection<Fragment> collection = this.mFragments;
 | |
|         if (collection == null) {
 | |
|             return false;
 | |
|         }
 | |
|         return collection.contains(fragment);
 | |
|     }
 | |
| }
 |