blob: 19e9fb8f2bf49fba30497e57ad6ef38368f4279b [file] [log] [blame]
/*
* Copyright 1999-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.cocoon.woody.binding;
import java.util.Locale;
import org.apache.cocoon.woody.Constants;
import org.apache.cocoon.woody.util.DomHelper;
import org.apache.cocoon.woody.datatype.convertor.Convertor;
import org.apache.cocoon.i18n.I18nUtils;
import org.w3c.dom.Element;
/**
* A simple multi field binding that will replace (i.e. delete then re-add all) its
* content.
* <pre><code>
* &lt;wb:multi-value id="<i>widget-id</i>"
* parent-path="<i>xpath-expression</i>"&gt;
* row-path="<i>xpath-expression</i>"&gt;
* &lt;!-- optional child binding to be executed upon 'save' of changed value --&gt;
* &lt;wb:on-update&gt;
* &lt;!-- any childbinding --&gt;
* &lt;/wb:on-update&gt;
* &lt;/wb:multi-value&gt;
* </code></pre>
*
* @version CVS $Id: MultiValueJXPathBindingBuilder.java,v 1.3 2004/03/05 13:02:27 bdelacretaz Exp $
*/
public class MultiValueJXPathBindingBuilder
extends JXPathBindingBuilderBase {
public JXPathBindingBase buildBinding(
Element bindingElem,
JXPathBindingManager.Assistant assistant) throws BindingException {
try {
CommonAttributes commonAtts = JXPathBindingBuilderBase.getCommonAttributes(bindingElem);
String multiValueId = DomHelper.getAttribute(bindingElem, "id");
String parentPath = DomHelper.getAttribute(bindingElem, "parent-path");
String rowPath = DomHelper.getAttribute(bindingElem, "row-path");
Element updateWrapElement =
DomHelper.getChildElement(bindingElem, BindingManager.NAMESPACE, "on-update");
JXPathBindingBase[] updateBindings = assistant.makeChildBindings(updateWrapElement);
Convertor convertor = null;
Locale convertorLocale = Locale.US;
Element convertorEl = DomHelper.getChildElement(bindingElem, Constants.WD_NS, "convertor");
if (convertorEl != null) {
String datatype = DomHelper.getAttribute(convertorEl, "datatype");
String localeStr = convertorEl.getAttribute("datatype");
if (!localeStr.equals("")) {
convertorLocale = I18nUtils.parseLocale(localeStr);
}
convertor = assistant.getDatatypeManager().createConvertor(datatype, convertorEl);
}
return new MultiValueJXPathBinding( commonAtts, multiValueId, parentPath, rowPath,
updateBindings, convertor, convertorLocale);
} catch (BindingException e) {
throw e;
} catch (Exception e) {
throw new BindingException("Error building multi value binding defined at " + DomHelper.getLocation(bindingElem), e);
}
}
}