/* * Isomorphic SmartGWT web presentation layer * Copyright 2000 and beyond Isomorphic Software, Inc. * * OWNERSHIP NOTICE * Isomorphic Software owns and reserves all rights not expressly granted in this source code, * including all intellectual property rights to the structure, sequence, and format of this code * and to all designs, interfaces, algorithms, schema, protocols, and inventions expressed herein. * * If you have any questions, please email
. * * This entire comment must accompany any portion of Isomorphic Software source code that is * copied or moved from this file. */ package com.smartgwtee.sample.showcase.server.customDataSource; public class Country { private long pk; private String countryCode; private String countryName; private String capital; private float area; private long population; private float gdp; public Country() { } public float getArea() { return area; } public String getCapital() { return capital; } public String getCountryCode() { return countryCode; } public String getCountryName() { return countryName; } public float getGdp() { return gdp; } public long getPk() { return pk; } public long getPopulation() { return population; } public void setArea(float area) { this.area = area; } public void setCapital(String capital) { this.capital = capital; } public void setCountryCode(String countryCode) { this.countryCode = countryCode; } public void setCountryName(String countryName) { this.countryName = countryName; } public void setGdp(float gdp) { this.gdp = gdp; } public void setPk(long pk) { this.pk = pk; } public void setPopulation(long population) { this.population = population; } }