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

📄 textchunk.java

📁 Mapserver的一个java客户端,包含两个applet支持地图显示。
💻 JAVA
字号:
// Copyright (C) 1998, 1999, 2001 Chris Nokleberg// Please see included LICENSE.TXTpackage com.sixlegs.image.png;/** * Common interface to all PNG text chunks (tEXt, zTXt, iTXt). * @see PngImage#getTextChunk * @see PngImage#getProperty */public interface TextChunk{    /**      * Returns the Latin-1 [ISO-8859-1] encoded keyword     * of this TextChunk.     */    String getKeyword();    /**      * Returns a translation of the keyword into the language     * used by this TextChunk, or null if unspecified.     */    String getTranslatedKeyword();    /**      * Returns the language [RFC-1766] used by the translated      * keyword and the text, or null if unspecified.     */    String getLanguage();    /**     * Returns the text of this TextChunk.     */    String getText();    /**     * Returns the original chunk type of this TextChunk: "tEXt",     * "zTXt", or "iTXt".     */    String getChunkType();}

⌨️ 快捷键说明

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