/*
 * $Header: /home/cvs/struts/xdocs/struts1.2/documentation/ja/src/share/org/apache/struts/action/ForwardingActionForward.java,v 1.4 2005/01/23 05:09:16 ashizawa Exp $
 * $Revision: 1.4 $
 * $Date: 2005/01/23 05:09:16 $
 *
 * Copyright 2000-2004 The Apache Software Foundation.
 * 
 * Licensed 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.struts.action;


/**
 * <p><code>ActionForward</code>のサブクラスです。
 * <code>redirect</code>の属性を<code>false</code>にデフォルト設定します。</p>
 * {@primary <p>A subclass of <code>ActionForward</code> that defaults the
 * <code>redirect</code> attribute to <code>false</code>.</p>}
 *
 * @version $Revision: 1.4 $ $Date: 2005/01/23 05:09:16 $
 * @translator 田中 良浩
 * @translator 芦沢 嘉典
 * @editor 
 * @update 2005/1/23
 * @status firstdraft
 * @memo ブロックA
 */

public class ForwardingActionForward extends ActionForward {


    // ----------------------------------------------------------- Constructors


    /**
     * <p>デフォルト値でインスタンスを生成します。</p>
     * {@primary <p>Construct a new instance with default values.</p>}
     */
    public ForwardingActionForward() {

        this(null);

    }


    /**
     * <p>pathで指定された値でインスタンスを生成します。</p>
     * {@primary <P>Construct a new instance with the specified path.</p>}
     *
     * @param path このインスタンスへのパス
     * {@primary path Path for this instance}
     */
    public ForwardingActionForward(String path) {

        super();
        setName(null);
        setPath(path);
        setRedirect(false);

    }


}
