View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   import javax.swing.*;
4   
5   /***
6    * Style to apply to a Swing component.
7    *
8    * @author Grégory Borelli
9    * @version 2003/06/06 - 05:10:23 - gen 7.01
10   */
11  public interface GB_ComponentStyle
12  {
13  
14      /***
15       * Apply a style on a component.
16       *
17       * @param a_component JComponent - a_component
18       */
19      void applyToComponent(
20              JComponent a_component);
21  
22  }