Package org.jibeframework.core.ui.wrapper

Examples of org.jibeframework.core.ui.wrapper.MapWrapper


  }

  @SuppressWarnings("unchecked")
  public Wrapper createWrapper(String scope, String modelScope, Object config) {
    LinkedHashMap<String, Object> c = new LinkedHashMap<String, Object>((Map<String, Object>) config);
    MapWrapper wrapper = new MapWrapper(scope, modelScope, c);
    for (MapWrapperPreprocessor processor : processors) {
      if (processor.applies(wrapper)) {
        wrapper = processor.process(wrapper);
      }
    }
View Full Code Here

TOP

Related Classes of org.jibeframework.core.ui.wrapper.MapWrapper

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.