Roster/src/java/org/thdl/roster/components/CountryDisplay.java

19 lines
403 B
Java
Executable File

package org.thdl.roster.components;
import org.apache.tapestry.*;
import org.thdl.roster.om.Country;
public class CountryDisplay extends BaseComponent
{
//attributes
private Country countryBean;
//accessors
public void setCountryBean(Country countryBean) {
this.countryBean = countryBean;
}
public Country getCountryBean() {
return countryBean;
}
//synthetic attribute accessors
//helper
}