Class DefaultDialogFrame<V>

    • Constructor Detail

      • DefaultDialogFrame

        public DefaultDialogFrame​(java.lang.Class<V> valueClass)
        Value class constructor.
        Parameters:
        valueClass - The class indicating the type of value held in the model.
        Throws:
        java.lang.NullPointerException - if the given value class is null.
      • DefaultDialogFrame

        public DefaultDialogFrame​(java.lang.Class<V> valueClass,
                                  Component component)
        Value class and component constructor.
        Parameters:
        valueClass - The class indicating the type of value held in the model.
        component - The single child component, or null if this frame should have no child component.
        Throws:
        java.lang.NullPointerException - if the given value class is null.
      • DefaultDialogFrame

        public DefaultDialogFrame​(ValueModel<V> valueModel)
        Value model constructor.
        Parameters:
        valueModel - The component value model.
        Throws:
        java.lang.NullPointerException - if the given value model is null.
      • DefaultDialogFrame

        public DefaultDialogFrame​(ValueModel<V> valueModel,
                                  Component component)
        Value model and component constructor.
        Parameters:
        valueModel - The component value model.
        component - The single child component, or null if this frame should have no child component.
        Throws:
        java.lang.NullPointerException - if the given value model is null.