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

📄 bookmarkinforecord.java

📁 esri的ArcGIS Server超级学习模板程序(for java)
💻 JAVA
字号:
package com.esri.solutions.jitk.personalization.dao;

/**
 * @author Derek Sedlmyer
 * @version 1.0
 * @created 05-Nov-2007 10:29:47 AM
 * 
 * This class implements the abstract InfoRecord class for a Bookmark Record. 
 */
public class BookmarkInfoRecord extends InfoRecord {

	/**
	 * The (foreign key) Map Composition Id. The Id would have been generated
	 * when the Map Composition Record was created and is used to link a Bookmark
	 * with a Map Composition.
	 */
	protected String mapCompositionId;
	
	public BookmarkInfoRecord(){

	}

	public void finalize() throws Throwable {

	}

	/**
	 * 
	 * @return The (foreign key) Map Composition Id - relates the Bookmark to a Map Composition.
	 */
	public String getMapCompositionId(){
		return mapCompositionId;
	}
	
	/**
	 * The (foreign key) Map Composition Id. The Id would have been generated when the 
	 * Map Composition record was created.
	 * @param map_composition_id
	 */
	public void setMapCompositionId(String map_composition_id){
		this.mapCompositionId = map_composition_id;
	}
	
	/**
	 * @return The concatenated string of properties for this record, including:
	 * Id, 
	 * Name,
	 * Description,
	 * Creator,
	 * Time Modified,
	 * Map Composition Id
	 */
	public String toString(){
		StringBuffer sb = new StringBuffer();
		sb.append(super.toString());
		sb.append("\nMap Comp Id:   " + this.getMapCompositionId());
		return sb.toString();
	}
	
}

⌨️ 快捷键说明

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