Package com.jeecms.cms.service

Examples of com.jeecms.cms.service.ContentListener


  private void afterChange(Content content, List<Map<String, Object>> mapList) {
    if (listenerList != null) {
      Assert.notNull(mapList);
      Assert.isTrue(mapList.size() == listenerList.size());
      int len = listenerList.size();
      ContentListener listener;
      for (int i = 0; i < len; i++) {
        listener = listenerList.get(i);
        listener.afterChange(content, mapList.get(i));
      }
    }
  }
View Full Code Here

TOP

Related Classes of com.jeecms.cms.service.ContentListener

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.