Skip to content

Instantly share code, notes, and snippets.

@seanparsons
Created May 1, 2011 08:04
Show Gist options
  • Save seanparsons/950337 to your computer and use it in GitHub Desktop.
Save seanparsons/950337 to your computer and use it in GitHub Desktop.
case class Button()
case class AlertDialog(
title: String = "",
message: String = "",
positiveButton: Option[Button] = None
)
def builder = new AlertDialog(title = "Epic Builder")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment