Packages

p

it.cwmp

view

package view

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. 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

  2. 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

  3. 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

  1. object AbstractAddressInput

    Companion object

Ungrouped