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

📄 imetadataid.java

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

/**
 * Defines an interface that allows an object to represent a unique identifier for a metadata document.
 * Additionally, this interface provides lookup methods for the actual {@link IMetadataDocument} represented
 * by this {@code IMetadataID} and the {@link IMetadataCatalog} that contains the {@link IMetadataDocument}.
 * The {@code IMetadataID} should be a type of a GUID for the metadata document.
 */
public interface IMetadataID {

	/**
	 * Retrieves a {@link String} containing the actual value of this {@code IMetadataID}.
	 * @return The ID, which will never be {@code null}.
	 */
	public String getId();
	/**
	 * Retrieves the {@link IMetadataCatalog} that contains the {@link IMetadataDocument} that
	 * is represented by this {@code IMetadataID}.
	 * @return The {@link IMetadataCatalog}, which will never be {@code null}.
	 */
	public IMetadataCatalog getCatalog();
	/**
	 * Retrieves the {@link IMetadataDocument} represented by this {@code IMetadataID}.
	 * @return The {@link IMetadataDocument}, which will never be {@code null}.
	 */
	public IMetadataDocument getDocument();
}

⌨️ 快捷键说明

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