All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.samskivert.xml.SetFieldRule Maven / Gradle / Ivy

There is a newer version: 1.9
Show newest version
//
// $Id$
//
// samskivert library - useful routines for java programs
// Copyright (C) 2001-2011 Michael Bayne, et al.
//
// This library 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 2.1 of the License, or
// (at your option) any later version.
//
// This library 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 this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

package com.samskivert.xml;

import java.lang.NoSuchFieldException;
import java.lang.reflect.Field;

import org.apache.commons.digester.Rule;

import com.samskivert.util.ValueMarshaller;

/**
 * Sets a field in the object on the top of the stack with a value parsed
 * from the body of an element.
 */
public class SetFieldRule extends Rule
{
    /**
     * Constructs a set field rule for the specified field.
     */
    public SetFieldRule (String fieldName)
    {
        // keep this for later
        _fieldName = fieldName;
    }

    @Override
    public void body (String namespace, String name, String bodyText)
        throws Exception
    {
        _bodyText = bodyText.trim();
    }

    @Override
    public void end (String namespace, String name)
        throws Exception
    {
        Object top = digester.peek();
        if (digester.getLogger().isDebugEnabled()) {
            digester.getLogger().debug(
                "  Setting '" + _fieldName + "' to '" +
                _bodyText + "' on '" + top + "'.");
        }

        // convert the source string into an object and set the field
        try {
            Field field = top.getClass().getField(_fieldName);
            Object value = ValueMarshaller.unmarshal(
                field.getType(), _bodyText);
            field.set(top, value);
        } catch (NoSuchFieldException nsfe) {
            digester.getLogger().warn(
                "No such field: " + top.getClass() + "." + _fieldName);
        }
    }

    protected String _fieldName;
    protected String _bodyText;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy