亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? stroke.java

?? GEo 地理操作源代碼
?? JAVA
字號:
/************************************************************************************************** ** ** $Id: Stroke.java,v 1.3 2004/03/02 03:14:41 gregreynolds Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/go/display/style/Attic/Stroke.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.go.display.style;// J2SE direct dependenciesimport java.awt.Color;/** * Encapsulates the stroke attributes that can be applied to any line Graphic. * * @version 0.2 * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> */public interface Stroke {    /**     *  arrow direction attribute name.     */    public static final String ARROW_DIRECTION = "STROKE_ARROW_DIRECTION";          /**     *  arrow style attribute name.     */    public static final String ARROW_STYLE = "STROKE_ARROW_STYLE";       /**     *  color attribute name.     */    public static final String COLOR = "STROKE_COLOR";      /**     *  dash array attribute name.     */    public static final String DASH_ARRAY = "STROKE_DASH_ARRAY";       /**     *  dash offset attribute name.     */    public static final String DASH_OFFSET = "STROKE_DASH_OFFSET";       /**     *  fill attribute name.     */    public static final String FILL = "STROKE_FILL";       /**     *  line cap attribute name.     */    public static final String LINE_CAP = "STROKE_LINE_CAP";       /**     *  line gap attribute name.     */    public static final String LINE_GAP = "STROKE_LINE_GAP";       /**     *  line join attribute name.     */    public static final String LINE_JOIN = "STROKE_LINE_JOIN";    /**     *  line style attribute name.     */    public static final String LINE_STYLE = "STROKE_LINE_STYLE";        /**     *  opacity attribute name.     */    public static final String OPACITY = "STROKE_OPACITY";        /**     *  width attribute name.     */    public static final String WIDTH = "STROKE_WIDTH";        /**     * Returns the stroke begin arrow style value.     * @return the stroke begin arrow style value.     */    public ArrowStyle getBeginArrowStyle();        /**     * Returns whether the stroke begin arrow style value has been set.     * @return true if the stroke begin arrow style value has been set, false otherwise.     */        public boolean isBeginArrowStyleSet();        /**     * Sets the stroke begin arrow style value.     * @param strokeArrowStyle the stroke begin arrow style value.     */        public void setBeginArrowStyle(ArrowStyle strokeArrowStyle);        /**     * Sets the fact that the stroke begin arrow style value has been set.     * @param flag true if the stroke begin arrow style value has been set, false otherwise.     */        public void setBeginArrowStyleSet(boolean flag);        /**     * Returns the stroke end arrow style value.     * @return the stroke end arrow style value.     */    public ArrowStyle getEndArrowStyle();    /**     * Returns whether the stroke end arrow style value has been set.     * @return true if the stroke end arrow style value has been set, false otherwise.     */        public boolean isEndArrowStyleSet();    /**     * Sets the stroke end arrow style value.     * @param strokeArrowStyle the stroke end arrow style value.     */        public void setEndArrowStyle(ArrowStyle strokeArrowStyle);    /**     * Sets the fact that the stroke end arrow style value has been set.     * @param flag true if the stroke end arrow style value has been set, false otherwise.     */        public void setEndArrowStyleSet(boolean flag);          /**     * Returns the stroke color value.     * @return the stroke color value.     */    public Color getColor();        /**     * Returns whether the stroke color value has been set.     * @return true if the stroke color value has been set, false otherwise.     */        public boolean isColorSet();        /**     * Sets the stroke color value.     * @param strokeColor the stroke color value.     */        public void setColor(Color strokeColor);        /**     * Sets the fact that the stroke color value has been set.     * @param flag true if the stroke color value has been set, false otherwise.     */        public void setColorSet(boolean flag);       /**     * Returns the stroke dash array value.     * @return the stroke dash array value.     */    public DashArray getDashArray();        /**     * Returns whether the stroke dash array value has been set.     * @return true if the stroke dash array value has been set, false otherwise.     */        public boolean isDashArraySet();        /**     * Sets the stroke dash array value.     * @param strokeDashArray the stroke dash array value.     */        public void setDashArray(DashArray strokeDashArray);        /**     * Sets the fact that the stroke dash array value has been set.     * @param flag true if the stroke dash array value has been set, false otherwise.     */        public void setDashArraySet(boolean flag);       /**     * Returns the stroke dash offset value.     * @return the stroke dash offset value.     */    public float getDashOffset();        /**     * Returns whether the stroke dash offset value has been set.     * @return true if the stroke dash offset value has been set, false otherwise.     */        public boolean isDashOffsetSet();        /**     * Sets the stroke dash offset value.     * @param strokeDashOffset the stroke dash offset value.     */        public void setDashOffset(float strokeDashOffset);        /**     * Sets the fact that the stroke dash offset value has been set.     * @param flag true if the stroke dash offset value has been set, false otherwise.     */        public void setDashOffsetSet(boolean flag);       /**     * Returns the stroke fill value.     * @return the stroke fill value.     */    public Fill getFill();        /**     * Returns whether the stroke fill value has been set.     * @return true if the stroke fill value has been set, false otherwise.     */        public boolean isFillSet();        /**     * Sets the stroke fill value.     * @param strokeFill the stroke fill value.     */        public void setFill(Fill strokeFill);        /**     * Sets the fact that the stroke fill value has been set.     * @param flag true if the stroke fill value has been set, false otherwise.     */        public void setFillSet(boolean flag);       /**     * Returns the stroke line cap value.     * @return the stroke line cap value.     */    public LineCap getLineCap();        /**     * Returns whether the stroke line cap value has been set.     * @return true if the stroke line cap value has been set, false otherwise.     */        public boolean isLineCapSet();        /**     * Sets the stroke line cap value.     * @param strokeLineCap the stroke line cap value.     */        public void setLineCap(LineCap strokeLineCap);        /**     * Sets the fact that the stroke line cap value has been set.     * @param flag true if the stroke line cap value has been set, false otherwise.     */        public void setLineCapSet(boolean flag);       /**     * Returns the stroke line gap value.     * @return the stroke line gap value.     */    public float getLineGap();        /**     * Returns whether the stroke line gap value has been set.     * @return true if the stroke line gap value has been set, false otherwise.     */        public boolean isLineGapSet();        /**     * Sets the stroke line gap value.     * @param strokeLineGap the stroke line gap value.     */        public void setLineGap(float strokeLineGap);        /**     * Sets the fact that the stroke line gap value has been set.     * @param flag true if the stroke line gap value has been set, false otherwise.     */        public void setLineGapSet(boolean flag);         /**     * Returns the stroke line join value.     * @return the stroke line join value.     */    public LineJoin getLineJoin();        /**     * Returns whether the stroke line join value has been set.     * @return true if the stroke line join value has been set, false otherwise.     */        public boolean isLineJoinSet();        /**     * Sets the stroke line join value.     * @param strokeLineJoin the stroke line join value.     */        public void setLineJoin(LineJoin strokeLineJoin);        /**     * Sets the fact that the stroke line join value has been set.     * @param flag true if the stroke line join value has been set, false otherwise.     */        public void setLineJoinSet(boolean flag);         /**     * Returns the stroke line style value.     * @return the stroke line style value.     */    public LineStyle getLineStyle();        /**     * Returns whether the stroke line style value has been set.     * @return true if the stroke line style value has been set, false otherwise.     */        public boolean isLineStyleSet();        /**     * Sets the stroke line style value.     * @param strokeLineStyle the stroke line style value.     */        public void setLineStyle(LineStyle strokeLineStyle);        /**     * Sets the fact that the stroke line style value has been set.     * @param flag true if the stroke line style value has been set, false otherwise.     */        public void setLineStyleSet(boolean flag);         /**     * Returns the opacity value.     * @return the opacity value.     */    public float getOpacity();        /**     * Returns whether the opacity value has been set.     * @return true if the opacity value has been set, false otherwise.     */        public boolean isOpacitySet();        /**     * Sets the opacity value.     * @param opacity the opacity value.     */        public void setOpacity(float opacity);        /**     * Sets the fact that the opacity value has been set.     * @param flag true if the opacity value has been set, false otherwise.     */        public void setOpacitySet(boolean flag);       /**     * Returns the width value.     * @return the width value.     */    public float getWidth();        /**     * Returns whether the width value has been set.     * @return true if the width value has been set, false otherwise.     */        public boolean isWidthSet();        /**     * Sets the width value.     * @param width the width value.     */        public void setWidth(float width);        /**     * Sets the fact that the width value has been set.     * @param flag true if the width value has been set, false otherwise.     */        public void setWidthSet(boolean flag);}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产一区 二区 三区一级| 欧美一区永久视频免费观看| 亚洲一区二区三区四区的| 日韩精品中文字幕一区 | 91麻豆精品一区二区三区| 日韩精品福利网| 一区二区三区在线播| 欧美国产禁国产网站cc| 日韩欧美国产wwwww| 欧美日韩日日摸| 9l国产精品久久久久麻豆| 久久99精品一区二区三区| 午夜日韩在线电影| 亚洲视频在线观看一区| 国产婷婷色一区二区三区| 欧美精品日韩综合在线| 欧美在线看片a免费观看| 成人av电影免费在线播放| 日一区二区三区| 蜜桃一区二区三区四区| 久久国产免费看| 国产一区二区三区精品视频| 日本va欧美va精品| 日韩电影在线免费看| 日韩激情av在线| 免费成人深夜小野草| 视频一区二区中文字幕| 日韩电影一区二区三区四区| 成熟亚洲日本毛茸茸凸凹| 国产精品久线在线观看| 亚洲天堂2016| 亚洲一区二区免费视频| 蜜桃av一区二区在线观看| 亚洲精品国产一区二区精华液| 亚洲欧美日韩国产综合| 视频一区视频二区中文| 激情小说亚洲一区| 成人精品免费网站| 欧美亚洲国产一区二区三区va| 欧美精品第1页| 久久久精品免费免费| 成人免费一区二区三区视频 | 亚洲欧美另类小说| 美女脱光内衣内裤视频久久网站| 亚洲精品乱码久久久久久久久| 国产一区视频在线看| 国产乱子伦视频一区二区三区 | 国产精品久久久久久久久图文区| 亚洲视频一二三区| 青青国产91久久久久久| 不卡电影一区二区三区| 26uuu亚洲| 丝袜美腿一区二区三区| 91亚洲大成网污www| 日韩精品在线看片z| 婷婷丁香久久五月婷婷| 波多野结衣一区二区三区 | 丝袜美腿高跟呻吟高潮一区| 欧美日本不卡视频| 精品少妇一区二区三区日产乱码 | 欧美乱妇20p| 一区二区三区四区国产精品| 精品一区二区影视| 欧美裸体一区二区三区| 亚洲人成网站影音先锋播放| 国产黄人亚洲片| 亚洲精品一区二区三区香蕉| 亚洲成人先锋电影| 欧美日韩电影在线播放| 亚洲国产日韩在线一区模特 | 91丨porny丨国产| 国产精品嫩草影院com| 波多野结衣亚洲一区| 成人欧美一区二区三区小说| 99国产精品久久久久久久久久久 | 另类综合日韩欧美亚洲| 国产一区久久久| 欧美三级在线播放| 亚洲成av人**亚洲成av**| 91国在线观看| 午夜精品aaa| 日韩亚洲欧美一区| 国产成人免费xxxxxxxx| 亚洲欧洲精品成人久久奇米网| 91免费看视频| 午夜av一区二区| 欧美精品一区二区精品网| 成人久久视频在线观看| 亚洲国产精品一区二区久久 | 老司机免费视频一区二区 | 国产在线不卡一卡二卡三卡四卡| 久久蜜桃香蕉精品一区二区三区| 成人国产精品免费网站| 亚洲卡通动漫在线| 日韩欧美二区三区| 99re亚洲国产精品| 六月丁香婷婷色狠狠久久| 中国色在线观看另类| 日韩欧美www| 日本高清成人免费播放| 国产成人亚洲综合a∨猫咪| 午夜精品一区二区三区免费视频| 欧美成人在线直播| 欧美色爱综合网| 99国产精品视频免费观看| 久久久久国产免费免费| 欧美一区二区三级| 91免费观看视频| 东方aⅴ免费观看久久av| 精品无人码麻豆乱码1区2区| 午夜精品福利一区二区三区av | 中文字幕第一区二区| 日韩欧美成人午夜| 欧美日韩成人一区| 6080国产精品一区二区| 99国产精品久| av影院午夜一区| 色成年激情久久综合| 91日韩精品一区| a4yy欧美一区二区三区| 国产欧美视频在线观看| 在线看一区二区| 欧美午夜精品久久久| 欧美综合视频在线观看| 欧美日韩中文另类| 欧美日韩一区二区三区在线| 欧美亚洲高清一区| 欧美丰满美乳xxx高潮www| 日韩一级欧美一级| 久久蜜桃av一区二区天堂| 国产精品色哟哟网站| 亚洲美女精品一区| 日韩不卡一二三区| 精品一区二区久久| 国产成人精品亚洲777人妖 | 美女视频黄免费的久久| 一区二区三区小说| 欧美理论片在线| 日韩欧美在线1卡| 国产偷国产偷精品高清尤物 | 一本色道久久综合亚洲aⅴ蜜桃| 欧美在线视频你懂得| 国产亲近乱来精品视频| 亚洲午夜精品久久久久久久久| 美女视频第一区二区三区免费观看网站 | 洋洋成人永久网站入口| 国内精品伊人久久久久av一坑 | 亚洲成人手机在线| 日韩精品福利网| 91蜜桃免费观看视频| 精品久久人人做人人爽| 亚洲综合在线观看视频| 国产一区二区三区四区五区美女 | 国产午夜精品一区二区| 日韩二区在线观看| 91亚洲资源网| 国产精品色婷婷| 极品少妇xxxx偷拍精品少妇| 这里只有精品99re| 一区二区三区 在线观看视频| 国产九色sp调教91| www欧美成人18+| 精品在线一区二区三区| 91精品国产综合久久香蕉的特点| 夜夜揉揉日日人人青青一国产精品| 从欧美一区二区三区| 中文字幕成人av| 国产成a人无v码亚洲福利| www日韩大片| 国产成人精品亚洲日本在线桃色| 久久综合久久综合九色| 精品无码三级在线观看视频| 精品国产露脸精彩对白| 国产一区二区在线观看视频| 久久精品视频网| 波多野结衣91| 亚洲精品久久久久久国产精华液| 欧美色男人天堂| 久久99精品国产91久久来源| 欧美激情一区不卡| 91电影在线观看| 日韩av一级片| 中文av一区二区| 欧美午夜在线观看| 国产自产2019最新不卡| 国产精品久久久爽爽爽麻豆色哟哟| 91免费版在线看| 天天操天天综合网| 国产欧美日本一区视频| 欧美性猛片xxxx免费看久爱| 久久国产尿小便嘘嘘尿| 1区2区3区精品视频| 欧美日韩午夜在线视频| 免费亚洲电影在线| 亚洲欧美一区二区三区久本道91| 制服丝袜在线91| 欧美最新大片在线看| 国产精品自产自拍| 婷婷丁香久久五月婷婷| 中文字幕亚洲综合久久菠萝蜜|