imetadataid.java

来自「esri的ArcGIS Server超级学习模板程序(for java)」· Java 代码 · 共 28 行

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