1 package com.loribel.commons.abstraction; 2 3 import javax.swing.*; 4 5 /*** 6 * Abstraction of a container of icon (with setters). 7 */ 8 public interface GB_IconsOwnerSet 9 extends 10 GB_IconsOwner 11 { 12 /*** 13 * Set an icon. 14 */ 15 void putIcon( 16 String a_name, 17 Icon a_icon); 18 19 /*** 20 * Set an icon. 21 */ 22 void putIcon( 23 String a_name, 24 String a_icon); 25 }