org.apache.struts.taglib.template.util
クラス ContentMapStack

java.lang.Object
  拡張org.apache.struts.taglib.template.util.ContentMapStack

public class ContentMapStack
extends java.lang.Object

This class provides access to a stack of ContentMaps in request scope through static methods.

バージョン:
$Revision: 1.1.1.1 $ $Date: 2003/03/11 13:38:38 $
作成者:
David Geary

コンストラクタの概要
private ContentMapStack()
          No instantiations of this class are allowed.
 
メソッドの概要
static java.util.Stack getStack(javax.servlet.jsp.PageContext pc)
          Return a reference to the stack.
static ContentMap peek(javax.servlet.jsp.PageContext pc)
          Peek at the map on top of the stack.
static ContentMap pop(javax.servlet.jsp.PageContext pc)
           
static void push(javax.servlet.jsp.PageContext pc, ContentMap map)
          Push a content map onto the stack.
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

ContentMapStack

private ContentMapStack()
No instantiations of this class are allowed.

メソッドの詳細

getStack

public static java.util.Stack getStack(javax.servlet.jsp.PageContext pc)
Return a reference to the stack. If there is no stack, one is created and placed into request scope associated with the page context.

パラメータ:
pc - The page context associated with a custom tag.

peek

public static ContentMap peek(javax.servlet.jsp.PageContext pc)
Peek at the map on top of the stack.

パラメータ:
pc - The page context associated with a custom tag.

push

public static void push(javax.servlet.jsp.PageContext pc,
                        ContentMap map)
Push a content map onto the stack.

パラメータ:
pc - The page context associated with a custom tag.
map - A content map that gets pushed onto the stack.

pop

public static ContentMap pop(javax.servlet.jsp.PageContext pc)
パラメータ:
pc - The page context associated with a custom tag.


このドキュメントは、Ja-Jakartaにより訳されました。コメントがある場合は、report@jajakarta.orgまでお願いします。
Copyright (C) 2000-2002 - Apache Software Foundation