View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   import javax.swing.*;
4   
5   /***
6    * Abstraction of a container of icon.
7    */
8   public interface GB_IconsOwner
9   {
10  
11      /***
12       * Returns an icon
13       */
14      Icon getIcon(
15              String a_name);
16  
17  }