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

📄 citation.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/*$************************************************************************************************ ** ** $Id: Citation.java,v 1.5 2004/05/01 02:37:04 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/metadata/citation/Citation.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.metadata.citation;// J2SE direct dependenciesimport java.util.Locale;/** * Standardized resource reference. * * @UML datatype CI_Citation * @author ISO 19115 * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> * @version 5.0 * * @revisit Methods not yet defined for this interface. */public interface Citation {    /**     * Name by which the cited resource is known.     *     * @param  locale The desired locale for the title to be returned, or <code>null</code>     *         for a title in some default locale (may or may not be the     *         {@linkplain Locale#getDefault() system default}).     * @return The citation title in the given locale.     *         If no name is available in the given locale, then some default locale is used.     * @UML mandatory title     */    String getTitle(Locale locale);    /**     * Short name or other language name by which the cited information is known.     * Example: "DCW" as an alternative title for "Digital Chart of the World.     *     * @param  locale The desired locale for the title to be returned, or <code>null</code>     *         for a title in some default locale (may or may not be the     *         {@linkplain Locale#getDefault() system default}).     * @return The citation title in the given locale.     *         If no name is available in the given locale, then some default locale is used.     * @UML optional alternateTitle     */    String[] getAlternateTitles(Locale locale);}

⌨️ 快捷键说明

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