/******************************************************************************* * Copyright (c) 2007-2009 Red Hat, Inc. * Distributed under license by Red Hat, Inc. All rights reserved. * This program is made available under the terms of the * Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html * * Contributor: * Red Hat, Inc. - initial API and implementation ******************************************************************************/ package org.jboss.tools.jsf.vpe.richfaces.template; import org.jboss.tools.vpe.editor.context.VpePageContext; import org.jboss.tools.vpe.editor.template.VpeCreationData; import org.jboss.tools.vpe.editor.util.Constants; import org.jboss.tools.vpe.editor.util.HTML; import org.mozilla.interfaces.nsIDOMDocument; import org.mozilla.interfaces.nsIDOMElement; import org.mozilla.interfaces.nsIDOMText; import org.w3c.dom.Element; import org.w3c.dom.Node; /** * Template for the <rich:select> component. * * @author dvinnichek */ public class RichFacesSelectTemplate extends AbstractEditableRichFacesTemplate { private String defaultLabel; private boolean showButton; public VpeCreationData create(VpePageContext pageContext, Node sourceNode, nsIDOMDocument visualDocument) { readAttributes(pageContext, sourceNode); nsIDOMElement wrapper = visualDocument.createElement(HTML.TAG_SPAN); String elementName = showButton ? HTML.TAG_SELECT : HTML.TAG_INPUT; nsIDOMElement element = visualDocument.createElement(elementName); if (defaultLabel != null) { if (HTML.TAG_INPUT.equals(elementName)) { element.setAttribute(RichFaces.ATTR_VALUE, defaultLabel); } if (HTML.TAG_SELECT.equals(elementName)) { nsIDOMElement option = visualDocument.createElement(HTML.TAG_OPTION); nsIDOMText text = visualDocument.createTextNode(defaultLabel); option.appendChild(text); element.appendChild(option); } } wrapper.appendChild(element); VpeCreationData creationData = new VpeCreationData(wrapper); return creationData; } /** * Read attributes from the source element. * * @param sourceNode * the source node */ private void readAttributes(VpePageContext pageContext, Node sourceNode) { Element sourceElement = (Element) sourceNode; // defaultLabel defaultLabel = sourceElement.hasAttribute(RichFaces.ATTR_DEFAULT_LABEL) ? sourceElement .getAttribute(RichFaces.ATTR_DEFAULT_LABEL) : null; // showButton showButton = sourceElement.hasAttribute(RichFaces.ATTR_SHOW_BUTTON) ? Constants.TRUE .equalsIgnoreCase(sourceElement .getAttribute(RichFaces.ATTR_SHOW_BUTTON)) : true; } }