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

📄 halo.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/************************************************************************************************** ** ** $Id: Halo.java,v 1.3 2004/03/02 03:14:41 gregreynolds Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/go/display/style/Attic/Halo.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.go.display.style;/** * TEncapsulates the halo radius that can be applied to any text Graphic. * * @version 0.2 * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> */public interface Halo {    /**     * Halo radius attribute name.     */    public static final String RADIUS = "HALO_RADIUS";    /**     * Returns the halo radius value.     * @return the value of the halo radius.     */    public float getRadius();    /**     * Returns whether the halo radius value has been set.     * @return true if the halo radius value has been set, false otherwise.     */        public boolean isRadiusSet();    /**     * Sets the halo radius value.     * @param haloRadius the value of the halo radius.     */        public void setRadius(float haloRadius);    /**     * Sets the fact that the halo radius value has been set.     * @param flag true if the halo radius value has been set, false otherwise.     */        public void setRadiusSet(boolean flag);}

⌨️ 快捷键说明

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