/** * EGroupware - Notifications Java Desktop App * * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License * @package notifications * @subpackage jdesk * @link http://www.egroupware.org * @author Stefan Werfling * @author Maik Hüttner */ package egroupwaretray; import java.util.ArrayList; import java.util.logging.Level; import java.util.logging.Logger; /** * KeyArray * * @author Stefan Werfling */ public class KeyArray { private String[] keys = {}; private ArrayList lkey = new ArrayList(); private ArrayList lvalue = new ArrayList(); public KeyArray(String[] keys) { this.keys = keys; } public void add(String key, Object o) { for(int i=0; i