FileDocCategorySizeDatePackage
Locality.javaAPI DocHibernate 3.2.5607Fri Jan 27 16:40:32 GMT 2006org.hibernate.test.stats

Locality

public class Locality extends Object
author
Steve Ebersole

Fields Summary
private Long
id
private String
name
private Country
country
Constructors Summary
public Locality()

	
public Locality(String name, Country country)

		this.name = name;
		this.country = country;
	
Methods Summary
public CountrygetCountry()

		return country;
	
public java.lang.LonggetId()

		return id;
	
public java.lang.StringgetName()

		return name;
	
public voidsetCountry(Country country)

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

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

		this.name = name;