FileDocCategorySizeDatePackage
Page.javaAPI DocExample1702Wed May 18 09:39:04 BST 2005com.discursive.jccook.xml.bean

Page

public class Page extends Object

Fields Summary
private String
type
private String
summary
private List
people
Constructors Summary
Methods Summary
public voidaddPerson(Person person)

		people.add( person );
	
public java.util.ListgetPeople()

return
Returns the people.

	
	    	 
	   
		return people;
	
public java.lang.StringgetSummary()

return
Returns the summary.

		return summary;
	
public java.lang.StringgetType()

return
Returns the type.

		return type;
	
public voidsetPeople(java.util.List people)

param
people The people to set.

		this.people = people;
	
public voidsetSummary(java.lang.String summary)

param
summary The summary to set.

		this.summary = summary;
	
public voidsetType(java.lang.String type)

param
type The type to set.

		this.type = type;