Java tutorial
//package com.java2s; //License from project: Apache License import java.util.ArrayList; public class Main { private static ArrayList<String> createCountrysId() { ArrayList<String> countrysTmp = new ArrayList<String>(); countrysTmp.add("BR"); return countrysTmp; } }