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

📄 htmlimage.java

📁 《湖泊生态的简单模拟》(Simulation Of Living Beings In A Lake )。这是我修读美国卡耐基梅隆大学Carnegie Mellon University(CMU)课程s
💻 JAVA
字号:
/**
 * Class that builds the HTML source for a HTML <IMG> element.
 *
 * @author 张维
 * @version 1.0.0
 */
public class HtmlImage {
	private String imageName;
	private String alternateText;

	/**
	 *  Constructor
	 */
	public HtmlImage(String iName, String aText) {
		imageName = iName;
		alternateText = aText;
	}

	/**
	 *  Construct the HTML source for the tag
	 */
	public String buildHtml() {
		return ("<IMG src='"  + imageName + "' alt='" + alternateText + "'>");
	}
} 

⌨️ 快捷键说明

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