roadinspectionpicture.java

来自「Java的框架」· Java 代码 · 共 50 行

JAVA
50
字号
package mcaps.apps.prrm.roadinspection.model;


/**
 * The <code>RoadInspectionPicture</code> represents the picture of
 * a road inspection.
 * @author jov
 * @date 13-Oct-2005
 * @version 1.0.1.0
 */
public class RoadInspectionPicture {

	private String name;
	private String path;
	
	/**
	 * Returns the name.
	 * @return String
	 */
	public String getName () {
		return name;
	}
	
	/**
	 * Sets the name.
	 * @param name The name to set.
	 */
	public void setName (String name) {
		this.name = name;
	}
	
	/**
	 * Returns the path.
	 * @return String
	 */
	public String getPath () {
		return path;
	}
	
	/**
	 * Sets the path.
	 * @param path The path to set.
	 */
	public void setPath (String path) {
		this.path = path;
	}
	

}

⌨️ 快捷键说明

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