FileDocCategorySizeDatePackage
Blobber.javaAPI DocHibernate 3.2.5776Sun Sep 26 00:18:28 BST 2004org.hibernate.test.legacy

Blobber

public class Blobber extends Object

Fields Summary
private int
id
private Blob
blob
private Clob
clob
Constructors Summary
Methods Summary
public java.sql.BlobgetBlob()
Returns the blob.

return
Blob

		return blob;
	
public java.sql.ClobgetClob()
Returns the clob.

return
Clob

		return clob;
	
public intgetId()
Returns the id.

return
int

		return id;
	
public voidsetBlob(java.sql.Blob blob)
Sets the blob.

param
blob The blob to set

		this.blob = blob;
	
public voidsetClob(java.sql.Clob clob)
Sets the clob.

param
clob The clob to set

		this.clob = clob;
	
public voidsetId(int id)
Sets the id.

param
id The id to set

		this.id = id;