Interface CustomUIProvider


  • public interface CustomUIProvider
    Interface used by other application to provide custom UI components with added functionality if needed.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      javax.swing.JButton getButton​(java.lang.String resource)
      Creates a JButton.
      javax.swing.JLabel getLabel​(java.lang.String text)
      Creates a JLabel.
      javax.swing.JList getList()
      Creates a JList.
      javax.swing.JTextField getTextField()
      Creates a JTextField.
    • Method Detail

      • getButton

        javax.swing.JButton getButton​(java.lang.String resource)
        Creates a JButton.
        Parameters:
        resource - The resource text for this button
        Returns:
        A JButton that can be used by the spell checker
      • getTextField

        javax.swing.JTextField getTextField()
        Creates a JTextField.
        Returns:
        A JTextField that can be used by the spell checker
      • getLabel

        javax.swing.JLabel getLabel​(java.lang.String text)
        Creates a JLabel.
        Parameters:
        text - The text for the Label
        Returns:
        A JLabel that can be used by the spell checker
      • getList

        javax.swing.JList getList()
        Creates a JList.
        Returns:
        A JList that can be used by the spell checker