Package cookxml.core.taglibrary

Examples of cookxml.core.taglibrary.SingleNSTagLibrary


   */
  public static String ADD_ATTR = "add";

  public static SingleNSTagLibrary createTagLibrary ()
  {
    SingleNSTagLibrary tagLibrary = new SingleNSTagLibrary ()
    {
      public SpecialCreator getSpecialCreator ()
      {
        return new CookXmlSpecialCreator ();
      }
    };
    tagLibrary.setNameSpace (NAMESPACE);
    tagLibrary.setSetter (null, ID_ATTR, new IdSetter ());
    tagLibrary.setSetter (null, VAR_ATTR, new VarSetter ());
    tagLibrary.setSetter (null, TAG_ATTR, new TagSetter ());
    tagLibrary.setSetter (null, SETAS_ATTR, new SetasSetter ());
    tagLibrary.setSetter (null, FUNC_ATTR, new FuncSetter ());
    tagLibrary.setSetter (null, ADD_ATTR, new AddSetter ());
    return tagLibrary;
  }
View Full Code Here

TOP

Related Classes of cookxml.core.taglibrary.SingleNSTagLibrary

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.