xmpaliasinfo.java

来自「flash xmp sdk,flash官方SDK」· Java 代码 · 共 39 行

JAVA
39
字号
package com.adobe.xmp.properties;import com.adobe.xmp.options.AliasOptions;/** * This interface is used to return info about an alias. *  * @since   27.01.2006 */public interface XMPAliasInfo{	/**	 * @return Returns Returns the namespace URI for the base property.	 */	String getNamespace();	/**	 * @return Returns the default prefix for the given base property. 	 */	String getPrefix();		/**	 * @return Returns the path of the base property.	 */	String getPropName();		/**	 * @return Returns the kind of the alias. This can be a direct alias	 *         (ARRAY), a simple property to an ordered array	 *         (ARRAY_ORDERED), to an alternate array	 *         (ARRAY_ALTERNATE) or to an alternate text array	 *         (ARRAY_ALT_TEXT).	 */	AliasOptions getAliasForm();}

⌨️ 快捷键说明

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