FileDocCategorySizeDatePackage
Folder.javaAPI DocHibernate 3.2.51494Fri Mar 03 17:17:58 GMT 2006org.hibernate.test.instrument.domain

Folder

public class Folder extends Object
author
Gavin King

Fields Summary
private Long
id
private String
name
private Folder
parent
private Collection
subfolders
private Collection
documents
public boolean
nameWasread
Constructors Summary
Methods Summary
public java.util.CollectiongetDocuments()

return
Returns the documents.

		return documents;
	
public java.lang.LonggetId()

return
Returns the id.

	
	    	 
	   
		return id;
	
public java.lang.StringgetName()

return
Returns the name.

		nameWasread = true;
		return name;
	
public org.hibernate.test.instrument.domain.FoldergetParent()

return
Returns the parent.

		return parent;
	
public java.util.CollectiongetSubfolders()

return
Returns the subfolders.

		return subfolders;
	
public voidsetDocuments(java.util.Collection documents)

param
documents The documents to set.

		this.documents = documents;
	
public voidsetId(java.lang.Long id)

param
id The id to set.

		this.id = id;
	
public voidsetName(java.lang.String name)

param
name The name to set.

		this.name = name;
	
public voidsetParent(org.hibernate.test.instrument.domain.Folder parent)

param
parent The parent to set.

		this.parent = parent;
	
public voidsetSubfolders(java.util.Collection subfolders)

param
subfolders The subfolders to set.

		this.subfolders = subfolders;