net.sf.jasperreports.components.iconlabel.IconLabelComponentDigester.java Source code

Java tutorial

Introduction

Here is the source code for net.sf.jasperreports.components.iconlabel.IconLabelComponentDigester.java

Source

/*
 * JasperReports - Free Java Reporting Library.
 * Copyright (C) 2001 - 2019 TIBCO Software Inc. All rights reserved.
 * http://www.jaspersoft.com
 *
 * Unless you have purchased a commercial license agreement from Jaspersoft,
 * the following license terms apply:
 *
 * This program is part of JasperReports.
 *
 * JasperReports is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * JasperReports is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with JasperReports. If not, see <http://www.gnu.org/licenses/>.
 */
package net.sf.jasperreports.components.iconlabel;

import net.sf.jasperreports.engine.component.XmlDigesterConfigurer;
import net.sf.jasperreports.engine.type.HorizontalImageAlignEnum;
import net.sf.jasperreports.engine.type.VerticalImageAlignEnum;
import net.sf.jasperreports.engine.xml.JRXmlConstants;
import net.sf.jasperreports.engine.xml.XmlConstantPropertyRule;

import org.apache.commons.digester.Digester;

/**
 * @author Teodor Danciu (teodord@users.sourceforge.net)
 */
public class IconLabelComponentDigester implements XmlDigesterConfigurer {
    @Override
    public void configureDigester(Digester digester) {
        addIconLabelComponentRules(digester);
    }

    public static void addIconLabelComponentRules(Digester digester) {
        String componentNamespace = digester.getRuleNamespaceURI();

        String iconLabelComponentPattern = "*/componentElement/iconLabel";
        digester.addFactoryCreate(iconLabelComponentPattern, IconLabelComponentFactory.class.getName());

        digester.addSetProperties(iconLabelComponentPattern,
                new String[] { IconLabelComponent.PROPERTY_ICON_POSITION, IconLabelComponent.PROPERTY_LABEL_FILL,
                        IconLabelComponent.PROPERTY_HORIZONTAL_ALIGNMENT,
                        IconLabelComponent.PROPERTY_VERTICAL_ALIGNMENT },
                new String[0]);

        digester.addRule(iconLabelComponentPattern,
                new XmlConstantPropertyRule(IconLabelComponent.PROPERTY_ICON_POSITION, IconPositionEnum.values()));
        digester.addRule(iconLabelComponentPattern,
                new XmlConstantPropertyRule(IconLabelComponent.PROPERTY_LABEL_FILL, ContainerFillEnum.values()));
        digester.addRule(iconLabelComponentPattern,
                new XmlConstantPropertyRule(IconLabelComponent.PROPERTY_HORIZONTAL_ALIGNMENT,
                        "horizontalImageAlign", HorizontalImageAlignEnum.values()));
        digester.addRule(iconLabelComponentPattern,
                new XmlConstantPropertyRule(IconLabelComponent.PROPERTY_VERTICAL_ALIGNMENT, "verticalImageAlign",
                        VerticalImageAlignEnum.values()));

        digester.setRuleNamespaceURI(JRXmlConstants.JASPERREPORTS_NAMESPACE);

        digester.addFactoryCreate(iconLabelComponentPattern + "/label/textField",
                LabelTextFieldFactory.class.getName());
        digester.addFactoryCreate(iconLabelComponentPattern + "/icon/textField",
                IconTextFieldFactory.class.getName());

        digester.setRuleNamespaceURI(componentNamespace);
    }

}