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() throws Exception
      Build the component.
      Note that this method deliberately requires the handling of checked exceptions at its invocation sites because there may be any number of implementations hiding behind this interface and so it is unwise to assume that all of them will be able to execute gracefully without throwing exceptions.
      Returns:
      The built JComponent type.
      Throws:
      Exception