/**

* @author  Savitha
* @version 1.1
*
* Development Environment        :  Oracle JDeveloper 9i
* Name of the Application        :  CityDetails.java
* Creation/Modification History  :

*
*   Savitha       18-Oct-2000      Created
*   Srinivas      04-Jan-2002      Updated  For OC4J2.0
*
* Overview of Application        :
*
* This class creates an object to get the city details like name, State_province

* and TimeZoneToGmt. This is called from the bean: CountriesCitiesBean to get
* an array of CityDetails.
*
***/

public class CityDetails {
    // Member variables for city details
    public String m_cityName;

    public String m_StateProvince;
    public String m_TimeZoneToGmt;

  /**
   * Constructor to get the details of the city
   */
  public CityDetails(String name, String StateProvince, String TimeZoneToGmt) {
     this.m_cityName      = name;
     this.m_StateProvince = StateProvince;

     this.m_TimeZoneToGmt = TimeZoneToGmt;
  }
}



E-mail this page
Printer View Printer View