Package org.bibeault.jrjournal.ccc

Source Code of org.bibeault.jrjournal.ccc.SetConstantTag$ExtraInfo

/*
* Copyright (c) 2005, Bear Bibeault
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
*  - Redistributions of source code must retain the above copyright notice,
*    this list of conditions and the following disclaimer.
*  - Redistributions in binary form must reproduce the above copyright notice,
*    this list of conditions and the following disclaimer in the documentation
*    and/or other materials provided with the distribution.
*  - The name of Bear Bibeault may not be used to endorse or promote products
*    derived from this software without specific prior written permission.
*
* This software is provided by the copyright holders and contributors "as is"
* and any express or implied warranties, including, but not limited to, the
* implied warranties of merchantability and fitness for a particular purpose
* are disclaimed. In no event shall the copyright owner or contributors be
* liable for any direct, indirect, incidental, special, exemplary, or
* consequential damages (including, but not limited to, procurement of
* substitute goods or services; loss of use, data, or profits; or business
* interruption) however caused and on any theory of liability, whether in
* contract, strict liability, or tort (including negligence or otherwise)
* arising in any way out of the use of this software, even if advised of the
* possibility of such damage.
*/
package org.bibeault.jrjournal.ccc;

import org.bibeault.jrjournal.jsp.ScopedVarTagSupport;

import javax.servlet.jsp.JspException;
import javax.servlet.jsp.tagext.TagData;
import javax.servlet.jsp.tagext.TagExtraInfo;
import javax.servlet.jsp.tagext.ValidationMessage;
import java.util.ArrayList;
import java.util.List;

/**
* Custom action handler for <code>&lt;ccc:setConstant&gt;</code> which
* establishes a scoped variable created from the named class constant.
*
* @author <a href="mailto:bear@javaranch.com">Bear Bibeault</a>
*/
public class SetConstantTag extends ScopedVarTagSupport {

    private String fieldName;

    public void setConstant( String value ) { this.fieldName = value; }

    public void doTag() throws JspException {
        try {
            setScopedVariable( ClassConstantInspector.getValue( this.fieldName ) );
        }
        catch (Exception e ) {
            throw new JspException( "Exception setting constant " + this.fieldName, e );
        }
    }

    /**
     * Extra info class for the <code>&lt;ccc:setConstant&gt;</code> custom
     * action that checks to ensure that the scope name, if specified, is a
     * valid one.
     */
    public static class ExtraInfo extends TagExtraInfo {

        public ValidationMessage[] validate( TagData tagData ) {
            List messages = new ArrayList();
            String varName = (String)tagData.getAttribute( "var" );
            if ((varName == null) || (varName.length() == 0)) messages.add( new ValidationMessage( null, "The var attribute cannot be missing or blank" ) );
            String scopeName = (String)tagData.getAttribute( "scope" );
            if (scopeName != null) ScopedVarTagSupport.validateScope( scopeName, messages );
            return (messages.size() == 0) ? null : (ValidationMessage[])messages.toArray( new ValidationMessage[messages.size()]);
        }

    }

}
TOP

Related Classes of org.bibeault.jrjournal.ccc.SetConstantTag$ExtraInfo

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.