org.apache.struts.taglib.template.util
Class Content

java.lang.Object
  |
  +--org.apache.struts.taglib.template.util.Content
All Implemented Interfaces:
java.io.Serializable

Deprecated. Use Tiles instead.

public class Content
extends java.lang.Object
implements java.io.Serializable

A utility file for templates.

This represents template content, which is included by templates. Templates can also treat content as plain text and print it to the implicit out variable. This simple class maintain two properties:

Version:
$Revision: 1.1 $
Author:
David Geary
See Also:
Serialized Form

Field Summary
private  java.lang.String content
          Deprecated. Templates regard this as content to be either included or printed directly.
private  java.lang.String direct
          Deprecated. Represents a boolean - if true, content is included, otherwise content is printed.
 
Constructor Summary
Content(java.lang.String content, java.lang.String direct)
          Deprecated. Use Tiles instead.
 
Method Summary
 java.lang.String getContent()
          Deprecated. Use Tiles instead.
 boolean isDirect()
          Deprecated. Use Tiles instead.
 java.lang.String toString()
          Deprecated. Use Tiles instead.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

content

private final java.lang.String content
Deprecated. 
Templates regard this as content to be either included or printed directly. This is a blank final that is set at construction.


direct

private final java.lang.String direct
Deprecated. 
Represents a boolean - if true, content is included, otherwise content is printed. This is a blank final that is set at construction. This is a string instead of a boolean as a convenience for the tags, whose corresponding attribute is a string.

Constructor Detail

Content

public Content(java.lang.String content,
               java.lang.String direct)
Deprecated. Use Tiles instead.

The only constructor.

Parameters:
content - The content's URI
direct - Is content printed directly (true) or included (false)?
Method Detail

getContent

public java.lang.String getContent()
Deprecated. Use Tiles instead.

Return content.


isDirect

public boolean isDirect()
Deprecated. Use Tiles instead.

Is content to be printed directly (isDirect() == true) instead of included (isDirect() == false).


toString

public java.lang.String toString()
Deprecated. Use Tiles instead.

Returns a string representation of the content.

Overrides:
toString in class java.lang.Object


Copyright © 2000-2003 - Apache Software Foundation