View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   /***
4    * Interface for Object witch contains Component style.
5    *
6    * @author Grégory Borelli
7    * @version 2003/10/28 - 17:41:48 - gen 7.12
8    */
9   public interface GB_ComponentStyleOwner
10  {
11  
12      /***
13       * Returns the style.
14       *
15       * @return GB_ComponentStyle
16       */
17      GB_ComponentStyle getComponentStyle();
18  
19  }