this.name = name;
}
}
this.name = name;
}
}
package model;
import java.util.ArrayList;
import java.util.List;

public class Factory
{
@SuppressWarnings("unchecked")
public static List createTree()
{
//生成国家
Country cn = new Country("中国");
Country us = new Country("美国");
Country jp = new Country("日本");
//生成城市
City beijing = new City("北京");
City shanghai = new City("上海");
City newyork = new City("纽约");
City la = new City("洛杉矶