htmlimage.java

来自「《湖泊生态的简单模拟》(Simulation Of Living Beings 」· Java 代码 · 共 25 行

JAVA
25
字号
/**
 * 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 + =
减小字号Ctrl + -
显示快捷键?