Package cookxml.core.interfaces

Examples of cookxml.core.interfaces.Creator


  public Creator getCreator (DecodeEngine decodeEngine, String parentNS, String parentTag, Element elm, Object parentObj)
  {
    SpecialCreator[] specialCreators = m_specialCreators;
    for (int i = 0; i < specialCreators.length; ++i)
    {
      Creator creator = specialCreators[i].getCreator (decodeEngine, parentNS, parentTag, elm, parentObj);
      if (creator != null)
        return creator;
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of cookxml.core.interfaces.Creator

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.