Package com.x2jb.bind.handler

Source Code of com.x2jb.bind.handler.CharacterHandler

/*
* XML 2 Java Binding (X2JB) - the excellent Java tool.
* Copyright 2009, by Richard Opalka.
*
* This 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 software 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 software; if not see the FSF site:
* http://www.fsf.org/ and search for the LGPL License document there.
*/
package com.x2jb.bind.handler;

import org.x2jb.bind.BindingException;

/**
* Character wrapper handler.
*
* @author <a href="mailto:richard_opalka@yahoo.com">Richard Opalka</a>
*/
public class CharacterHandler extends AbstractHandler
{

    /**
     * Constructor.
     */
    public CharacterHandler()
    {
        super();
    }

    /**
     * Constructs instance.
     *
     * @param value string representation
     * @return Object value
     */
    protected final Object create( final String value )
    {
        if ( value.length() == 1 )
        {
            return new Character( value.charAt( 0 ) );
        }
        else
        {
            throw new BindingException( "Incorrect value '" + value + "'" );
        }
    }

}
TOP

Related Classes of com.x2jb.bind.handler.CharacterHandler

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.