com.bennyhuo.tieguanyin.compiler.fragment.builder.SaveStateMethodBuilder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler Show documentation
Show all versions of compiler Show documentation
An Activity & Fragment builder to make it easier and safer to start a new page.
The newest version!
package com.bennyhuo.tieguanyin.compiler.fragment.builder
import com.bennyhuo.tieguanyin.compiler.basic.builder.BasicSaveStateMethodBuilder
import com.bennyhuo.tieguanyin.compiler.basic.types.FRAGMENT
import com.bennyhuo.tieguanyin.compiler.fragment.FragmentClass
/**
* Created by benny on 1/31/18.
*/
class SaveStateMethodBuilder(fragmentClass: FragmentClass)
: BasicSaveStateMethodBuilder(fragmentClass) {
override val instanceType = FRAGMENT.java
}