FileDocCategorySizeDatePackage
Scene.javaAPI DocExample1341Wed May 18 09:39:02 BST 2005com.discursive.jccook.xml.bardsearch.model

Scene

public class Scene extends Object

Fields Summary
private String
title
private StringBuffer
content
Constructors Summary
Methods Summary
public voidappendLine(java.lang.String pLine)

        content.append(pLine + "\n");
    
public java.lang.StringBuffergetContent()


       
        return content;
    
public java.lang.StringgetTitle()

        return title;
    
public voidsetContent(java.lang.StringBuffer pContent)

        content = pContent;
    
public voidsetTitle(java.lang.String pTitle)

        title = pTitle;