Package de.innovationgate.wgpublisher.webtml

Examples of de.innovationgate.wgpublisher.webtml.Base


   * @param id The ID of the WebTML tag.
   */
  public TMLContext getContextFromTag(String id) {
   
    java.util.Map tags = (java.util.Map) _pageContext.getRequest().getAttribute("TagIds"); // Get a map of tags, keyed by their tag ids
    Base tag = (Base) tags.get(id); // Fetch the tag with id "fetchMe"
    return tag.getTMLContext(); // Get the TMLContext-Object
   
  }
View Full Code Here

TOP

Related Classes of de.innovationgate.wgpublisher.webtml.Base

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.