⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 countries.java

📁 IBM RSA下的JSF开发示例
💻 JAVA
字号:
/* Countries.java
 * Created on Jan 11, 2005
 *
 *A class to hold Continent and Country names.
 */
package com.ibm.samples.eventHandling;

/**
 * @author cmjaun
 *
 */
public class Countries {
	String continent;
	String[] countries;
	/**
	 * @return Returns the continent.
	 */
	public String getContinent() {
		return continent;
	}
	/**
	 * @param continent The continent to set.
	 */
	public void setContinent(String continent) {
		this.continent = continent;
	}
	/**
	 * @return Returns the countries.
	 */
	public String[] getCountries() {
		return countries;
	}
	/**
	 * @param countries The countries to set.
	 */
	public void setCountries(String[] countries) {
		this.countries = countries;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -