Package com.agiletec.apsadmin.util

Examples of com.agiletec.apsadmin.util.SelectItem


      Map<String, String> senders = this.getMailManager().getMailConfig().getSenders();
      List<SelectItem> items = new ArrayList<SelectItem>(senders.size());
      Iterator<String> iter = senders.keySet().iterator();
      while (iter.hasNext()) {
        String string = (String) iter.next();
        SelectItem item = new SelectItem(string, senders.get(string));
        items.add(item);
      }
      return items;
    } catch (Throwable t) {
      ApsSystemUtils.logThrowable(t, this, "getMailSenders");
View Full Code Here

TOP

Related Classes of com.agiletec.apsadmin.util.SelectItem

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.