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

📄 fighter.java

📁 openmap java写的开源数字地图程序. 用applet实现,可以像google map 那样放大缩小地图.
💻 JAVA
字号:
/* ********************************************************************** *  *    Use, duplication, or disclosure by the Government is subject to *           restricted rights as set forth in the DFARS. *   *                         BBNT Solutions LLC *                             A Part of  *                  Verizon       *                          10 Moulton Street *                         Cambridge, MA 02138 *                          (617) 873-3000 * *    Copyright (C) 2002 by BBNT Solutions, LLC *                 All Rights Reserved. * ********************************************************************** */package com.bbn.openmap.examples.beanbox;/** * A SimpleBeanObject that represents a Fighter. Contains two fighter * specific fields: type (eg. F16, M21 etc) and speedInNMPerHr. */public class Fighter extends SimpleBeanObject {    protected String type;    protected float speedInNMPerHr;    public Fighter() {        super();        this.setType("F16");        this.setSpeedInNMPerHr(1200);    }    public Fighter(long id, String type, float lat, float lon,            float bearingInDeg, float speedInNMPerHr) {        super(id, lat, lon, bearingInDeg);        this.setType(type);        this.setSpeedInNMPerHr(speedInNMPerHr);    }    public void setType(String type) {        this.type = type;    }    public String getType() {        return this.type;    }    public float getSpeedInNMPerHr() {        return speedInNMPerHr;    }    public void setSpeedInNMPerHr(float speedInNMPerHr) {        this.speedInNMPerHr = speedInNMPerHr;    }    public String toString() {        return "[FIGHTER " + id + " " + latitude + " " + longitude + " "                + bearingInDeg + " " + customGraphicClassName + " "                + graphicImage + " " + type + " " + speedInNMPerHr + "]";    }}

⌨️ 快捷键说明

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