📄 imetadataaware.java
字号:
package com.esri.solutions.jitk.common.metadata;
/**
* Defines an interface that allows another object to access and utilize metadata. An object
* that is <em>Metadata Aware</em> is an object that will receive a an {@link IMetadataContext},
* through which it will be able to access a metadata registry and retrieve resources contained therein.
*/
public interface IMetadataAware {
/**
* Sets the {@link IMetadataContext} on an object. The object then
* has access to a metadata registry.
* @param ctx Reference to an {@link IMetadataContext}. {@code ctx} cannot be null.
*/
public void setMetadataContext(IMetadataContext ctx);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -