Package avail. anvil. components
Types
Link copied to clipboard
class DirectoryChooser( label: String, title: String, panelBorder: Border = BorderFactory.createEmptyBorder(10,10,10,10)) : JPanel
Content copied to clipboard
A JPanel with a GridBagLayout that places a JLabel to the left of the JTextField and a button to the right of the JTextField that opens a JFileChooser used to choose a directory.
Link copied to clipboard
class TextFieldTextFieldButton(val button: JButton = JButton("…"), panelBorder: Border = BorderFactory.createEmptyBorder(10,10,10,10)) : JPanel
Content copied to clipboard
A JPanel with a GridBagLayout that places a JLabel to the left of the JTextField and a button to the right of the JTextField.
Link copied to clipboard
class TextFieldWithLabel(label: String, panelBorder: Border = BorderFactory.createEmptyBorder(10,10,10,10)) : JPanel
Content copied to clipboard
A JPanel with a GridBagLayout that places a JLabel to the left
Link copied to clipboard
class TextFieldWithLabelAndButton( label: String, val button: JButton = JButton("…"), panelBorder: Border = BorderFactory.createEmptyBorder(10,10,10,10)) : JPanel
Content copied to clipboard
A JPanel with a GridBagLayout that places a JLabel to the left of the JTextField and a button to the right of the JTextField.