halo.java
来自「GEo 地理操作源代码」· Java 代码 · 共 49 行
JAVA
49 行
/************************************************************************************************** ** ** $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® 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 + =
减小字号Ctrl + -
显示快捷键?