package view
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
abstract
class
AbstractAddressInput[Result] extends AnyRef
A view to select an IP address and port
A view to select an IP address and port
- Result
the type of result
-
case class
OneAddressInput(viewTitle: String, message: String)(onResultReady: ((String, String)) ⇒ Unit, onDialogCanceled: (Unit) ⇒ Unit)(defaultIP: String = localIP, defaultPort: String = defaultPort) extends AbstractAddressInput[(String, String)] with Product with Serializable
Class to request user a single pair IP and port
Class to request user a single pair IP and port
- viewTitle
the view title
- message
the message to show the user
- onResultReady
the action on result ready
- onDialogCanceled
the action on dialog canceled
-
case class
TwoAddressesInput(viewTitle: String, message: String)(onResultReady: (((String, String), (String, String))) ⇒ Unit, onDialogCanceled: (Unit) ⇒ Unit)(firstDefaultIP: String = localIP, firstDefaultPort: String = defaultPort, secondDefaultIP: String = localIP, secondDefaultPort: String = defaultPort) extends AbstractAddressInput[((String, String), (String, String))] with Product with Serializable
A class to request user to insert two addresses
A class to request user to insert two addresses
- viewTitle
the view title
- message
the message to show the user
- onResultReady
the action on result ready
- onDialogCanceled
the action to do on dialog canceled
Value Members
-
object
AbstractAddressInput
Companion object