Class TextField

    • Constructor Detail

      • TextField

        public TextField()
        Deprecated.
        Constructs an empty TextField with no caption.
      • TextField

        public TextField​(String caption)
        Deprecated.
        Constructs an empty TextField with given caption.
        Parameters:
        caption - the caption String for the editor.
      • TextField

        public TextField​(Property dataSource)
        Deprecated.
        Constructs a new TextField that's bound to the specified Property and has no caption.
        Parameters:
        dataSource - the Property to be edited with this editor.
      • TextField

        public TextField​(String caption,
                         Property dataSource)
        Deprecated.
        Constructs a new TextField that's bound to the specified Property and has the given caption String.
        Parameters:
        caption - the caption String for the editor.
        dataSource - the Property to be edited with this editor.
      • TextField

        public TextField​(String caption,
                         String value)
        Deprecated.
        Constructs a new TextField with the given caption and initial text contents. The editor constructed this way will not be bound to a Property unless Property.Viewer.setPropertyDataSource(Property) is called to bind it.
        Parameters:
        caption - the caption String for the editor.
        value - the initial text content of the editor.