Package swingtree.api

Interface SwingBuilder<C extends JComponent>

Type Parameters:
C - The UI component type built by implementations of this.

public interface SwingBuilder<C extends JComponent>
If you are using builders for your custom Swing components, implement this to allow the UI builder to call the build() method for you!
  • Method Summary

    Modifier and Type
    Method
    Description
    Build the component.
  • Method Details

    • build

      C build()
      Build the component.
      Returns:
      The built JComponent type.