Examples of TMLOption


Examples of de.innovationgate.wgpublisher.webtml.utils.TMLOption

            return null;
        }
    }
   
    public TMLOption getOptionObject(String optionName) {
        TMLOption option = (TMLOption) tagOptions.get(optionName);
        if (option != null) {
            return option;
        }
        else {
            return null;
View Full Code Here

Examples of de.innovationgate.wgpublisher.webtml.utils.TMLOption

    public String getRequestURL() {
        return tmlContext.getrequest().getAttribute(WGACore.ATTRIB_REQUESTURL).toString();
    }
   
    public void setOption(String name, Object value, String scope) {
        TMLOption option = new TMLOption(name, value, scope);
        tagOptions.put(name, option);
        localTagOptions.put(name, option.getValue());
       
    }
View Full Code Here

Examples of de.innovationgate.wgpublisher.webtml.utils.TMLOption

       
        Element options = debugNode.addElement("options");
        Iterator opts = status.tagOptions.keySet().iterator();
        String key;
        Element optionElem;
        TMLOption tmloption;
        while (opts.hasNext()) {
            key = (String) opts.next();
            if (!key.startsWith("$")) {
                tmloption = (TMLOption) status.tagOptions.get(key);
                optionElem = options.addElement("option");
                optionElem.addAttribute("name", tmloption.getName());
                optionElem.addAttribute("type", (tmloption.getValue() != null ? tmloption.getValue().getClass().getName() : "(none)"));
                optionElem.addText(String.valueOf(tmloption.getValue()));
            }
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.