blob: cc749aa59fbe3316f4d43d98f3b8bb4955b47711 [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.ecview.core.databinding.tests.bean.model;
import java.util.ArrayList;
import java.util.List;
public class BCountry extends AbstractBean {
private String isoCode;
private List<String> cities = new ArrayList<String>();
/**
* @return the isoCode
*/
public String getIsoCode() {
return isoCode;
}
/**
* @param isoCode
* the isoCode to set
*/
public void setIsoCode(String isoCode) {
firePropertyChanged("isoCode", this.isoCode, this.isoCode = isoCode);
}
public List<String> getCities() {
return cities;
}
public void setCities(List<String> cities) {
this.cities = cities;
}
}