FileDocCategorySizeDatePackage
Problematic.javaAPI DocHibernate 3.2.51222Tue Dec 12 16:22:26 GMT 2006org.hibernate.test.instrument.domain

Problematic

public class Problematic extends Object
{@inheritDoc}
author
Steve Ebersole

Fields Summary
private Long
id
private String
name
private byte[]
bytes
private Representation
representation
Constructors Summary
Methods Summary
public byte[]getBytes()

		return bytes;
	
public java.lang.LonggetId()

		return id;
	
public java.lang.StringgetName()

		return name;
	
public org.hibernate.test.instrument.domain.Problematic$RepresentationgetRepresentation()

		if ( representation == null ) {
			representation =  ( ( bytes == null ) ? null : new Representation( bytes ) );
		}
		return representation;
	
public voidsetBytes(byte[] bytes)

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

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

		this.name = name;
	
public voidsetRepresentation(org.hibernate.test.instrument.domain.Problematic$Representation rep)

		bytes = rep.getBytes();