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

📄 errimagetile.java

📁 OpenMap是一个基于JavaBeansTM的开发工具包。利用OpenMap你就能够快速构建用于访问legacy数据库的应用程序与applets。OpenMap提供了允许用户查看和操作地理空间信息的
💻 JAVA
字号:
//**********************************************************************////<copyright>////BBN Technologies//10 Moulton Street//Cambridge, MA 02138//(617) 873-8000////Copyright (C) BBNT Solutions LLC. All rights reserved.////</copyright>//**********************************************************************////$Source:///cvs/darwars/ambush/aar/src/com/bbn/ambush/mission/MissionHandler.java,v//$//$RCSfile: ErrImageTile.java,v $//$Revision: 1.1.2.2 $//$Date: 2007/01/22 15:52:59 $//$Author: dietrick $////**********************************************************************package com.bbn.openmap.dataAccess.image;import com.bbn.openmap.proj.Projection;/** * An ErrImageTile is an ImageTile that can't be displayed due to projection * incompatibilities or some other problem. It's a space-holder that can be * queried for information about the file and also provide a GUI-component-like * list object that can be used to represent a file that was decoded but not * able to be displayed for some reason. *  * @author dietrick */public class ErrImageTile extends ImageTile {    protected String problemMessage;    public ErrImageTile(String problemMessage) {        this.problemMessage = problemMessage;    }    public String getProblemMessage() {        return problemMessage;    }    public void setProblemMessage(String problemMessage) {        this.problemMessage = problemMessage;    }    public boolean isVisible() {        return false;    }    public boolean generate(Projection proj) {        return false;    }}

⌨️ 快捷键说明

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