net.sf.jasperreports.engine.xml.JRPropertyDigesterRule Maven / Gradle / Ivy
/*
* JasperReports - Free Java Reporting Library.
* Copyright (C) 2001 - 2023 Cloud Software Group, 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 .
*/
package net.sf.jasperreports.engine.xml;
import org.apache.commons.digester.Rule;
import org.xml.sax.Attributes;
import net.sf.jasperreports.engine.JRPropertiesHolder;
/**
* Digester rule that handles an object property.
*
* @deprecated Replaced by {@link JRPropertyFactory}.
* @author Lucian Chirita ([email protected])
*/
public class JRPropertyDigesterRule extends Rule
{
@Override
public void begin(String namespace, String name, Attributes attributes)
{
JRPropertiesHolder propertiesHolder = (JRPropertiesHolder) digester.peek();
String key = attributes.getValue(JRXmlConstants.ATTRIBUTE_name);
String value = attributes.getValue(JRXmlConstants.ATTRIBUTE_value);
propertiesHolder.getPropertiesMap().setProperty(key, value);
}
}