Skip to content

Instantly share code, notes, and snippets.

@ayushmaniac
Last active August 23, 2020 19:03
Show Gist options
  • Save ayushmaniac/18f570a7cdd392da7fd52c029a7cd23b to your computer and use it in GitHub Desktop.
Save ayushmaniac/18f570a7cdd392da7fd52c029a7cd23b to your computer and use it in GitHub Desktop.
class Base {
var pizzaBaseType : String? = null
}
class Pizza {
var topping : Topping? = null
var base : Base? = null
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.pizza_activity)
toping = Topping()
toping?.topingType = "Chicken"
base = Base()
base?.pizzaBaseType = "CheeseBurst"
}
}
class Topping {
var toppingType : String? = null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment