alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Struts example source code file (Param.java)

This example Struts source code file (Param.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Struts tags/keywords

component, component, io, name, no, param, parameter, parameter, string, string, strutsexception, strutstagattribute, unnamedparametric, unnamedparametric, value

The Struts Param.java source code

/*
 * $Id: Param.java 768855 2009-04-27 02:09:35Z wesw $
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package org.apache.struts2.components;

import java.io.Writer;

import org.apache.struts2.views.annotations.StrutsTag;
import org.apache.struts2.views.annotations.StrutsTagAttribute;
import org.apache.struts2.StrutsException;

import com.opensymphony.xwork2.util.ValueStack;

/**
 * <!-- START SNIPPET: javadoc -->
 * <p>This tag can be used to parameterize other tags.

* The include tag and bean tag are examples of such tags. * <p/> * The parameters can be added with or without a name as key. * If the tag provides a name attribute the parameters are added using the * {@link Component#addParameter(String, Object) addParamter} method. * For unnamed parameters the Tag must implement the {@link UnnamedParametric} interface defined in * this class (e.g. The TextTag does this). * <p/> * This tag has the following two paramters. * <!-- START SNIPPET: params --> * <ul> * <li>name (String) - the name of the parameter * <li>value (Object) - the value of the parameter * </ul> * <!-- END SNIPPET: params --> * <p/> * <b>Note: * When you declare the param tag, the value can be defined in either a <tt>value attribute or * as text between the start and end tag. Struts behaves a bit different according to these two situations. * This is best illustrated using an example: * <br/><param name="color">blue</param> <-- (A) --> * <br/><param name="color" value="blue"/> <-- (B) --> * <br/>In the first situation (A) the value would be evaluated to the stack as a java.lang.String object. * And in situation (B) the value would be evaluated to the stack as a <tt>java.lang.Object object. * <br/>For more information see WW-808. * <!-- END SNIPPET: javadoc --> * * <p/> Examples * <!-- START SNIPPET: example --> * <pre> * <ui:component> * <ui:param name="key" value="[0]"/> * <ui:param name="value" value="[1]"/> * <ui:param name="context" value="[2]"/> * </ui:component> * </pre> * <!-- END SNIPPET: example --> * <p/> * <!-- START SNIPPET: exampledescription --> * where the key will be the identifier and the value the result of an OGNL expression run against the current * ValueStack. * <!-- END SNIPPET: exampledescription --> * <p/> * This second example demonstrates how the text tag can use parameters from this param tag. * <!-- START SNIPPET: example2 --> * <pre> * <s:text name="cart.total.cost"> * <s:param value="#session.cartTotal"/> * </s:text> * </pre> * <!-- END SNIPPET: example2 --> * <p/> * * @see Include * @see Bean * @see Text * */ @StrutsTag(name="param", tldTagClass="org.apache.struts2.views.jsp.ParamTag", description="Parametrize other tags") public class Param extends Component { protected String name; protected String value; public Param(ValueStack stack) { super(stack); } public boolean end(Writer writer, String body) { Component component = findAncestor(Component.class); if (value != null) { if (component instanceof UnnamedParametric) { ((UnnamedParametric) component).addParameter(findValue(value)); } else { String name = findString(this.name); if (name == null) { throw new StrutsException("No name found for following expression: " + this.name); } Object value = findValue(this.value); component.addParameter(name, value); } } else { if (component instanceof UnnamedParametric) { ((UnnamedParametric) component).addParameter(body); } else { component.addParameter(findString(name), body); } } return super.end(writer, ""); } public boolean usesBody() { return true; } @StrutsTagAttribute(description="Name of Parameter to set") public void setName(String name) { this.name = name; } @StrutsTagAttribute(description="Value expression for Parameter to set", defaultValue="The value of evaluating provided name against stack") public void setValue(String value) { this.value = value; } /** * Tags can implement this to support nested param tags without the <tt>name attribute. * <p/> * The {@link Text TextTag} uses this approach. For unnamed parameters an example is given in the class * javadoc for {@link Param ParamTag}. */ public interface UnnamedParametric { /** * Adds the given value as a parameter to the outer tag. * @param value the value */ public void addParameter(Object value); } }

Other Struts examples (source code examples)

Here is a short list of links related to this Struts Param.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.