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

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

?? accessiblehtml.java

?? JAVA的一些源碼 JAVA2 STANDARD EDITION DEVELOPMENT KIT 5.0
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
	    getTextComponent().setCursor(cursor);	}		/**	 * Gets the Font of this object.	 *	 * @return the Font,if supported, for the object; otherwise, null	 * @see #setFont	 */	public Font getFont() {	    return getTextComponent().getFont();	}		/**	 * Sets the Font of this object.	 *	 * @param f the new Font for the object	 * @see #getFont	 */	public void setFont(Font f) {	    getTextComponent().setFont(f);	}		/**	 * Gets the FontMetrics of this object.	 *	 * @param f the Font	 * @return the FontMetrics, if supported, the object; otherwise, null	 * @see #getFont	 */	public FontMetrics getFontMetrics(Font f) {	    return getTextComponent().getFontMetrics(f);	}		/**	 * Determines if the object is enabled.  Objects that are enabled	 * will also have the AccessibleState.ENABLED state set in their	 * AccessibleStateSets.	 *	 * @return true if object is enabled; otherwise, false	 * @see #setEnabled	 * @see AccessibleContext#getAccessibleStateSet	 * @see AccessibleState#ENABLED	 * @see AccessibleStateSet	 */	public boolean isEnabled() {	    return getTextComponent().isEnabled();	}		/**	 * Sets the enabled state of the object.	 *	 * @param b if true, enables this object; otherwise, disables it 	 * @see #isEnabled	 */	public void setEnabled(boolean b) {	    getTextComponent().setEnabled(b);	}		/**	 * Determines if the object is visible.  Note: this means that the	 * object intends to be visible; however, it may not be	 * showing on the screen because one of the objects that this object	 * is contained by is currently not visible.  To determine if an object	 * is showing on the screen, use isShowing().	 * <p>Objects that are visible will also have the 	 * AccessibleState.VISIBLE state set in their AccessibleStateSets.	 *	 * @return true if object is visible; otherwise, false	 * @see #setVisible	 * @see AccessibleContext#getAccessibleStateSet	 * @see AccessibleState#VISIBLE	 * @see AccessibleStateSet	 */	public boolean isVisible() {	    return getTextComponent().isVisible();	}		/**	 * Sets the visible state of the object.	 *	 * @param b if true, shows this object; otherwise, hides it 	 * @see #isVisible	 */	public void setVisible(boolean b) {	    getTextComponent().setVisible(b);	}		/**	 * Determines if the object is showing.  This is determined by checking	 * the visibility of the object and its ancestors.	 * Note: this	 * will return true even if the object is obscured by another (for 	 * example, it is underneath a menu that was pulled down).	 *	 * @return true if object is showing; otherwise, false	 */	public boolean isShowing() {	    return getTextComponent().isShowing();	}		/** 	 * Checks whether the specified point is within this object's bounds,	 * where the point's x and y coordinates are defined to be relative 	 * to the coordinate system of the object. 	 *	 * @param p the Point relative to the coordinate system of the object	 * @return true if object contains Point; otherwise false	 * @see #getBounds	 */	public boolean contains(Point p) {	    Rectangle r = getBounds();	    if (r != null) {		return r.contains(p.x, p.y);	    } else {		return false;	    }	}		/** 	 * Returns the location of the object on the screen.	 *	 * @return the location of the object on screen; null if this object	 * is not on the screen	 * @see #getBounds	 * @see #getLocation	 */	public Point getLocationOnScreen() {	    Point editorLocation = getTextComponent().getLocationOnScreen();	    Rectangle r = getBounds();	    if (r != null) {		return new Point(editorLocation.x + r.x,				 editorLocation.y + r.y);	    } else {		return null;	    }	}		/** 	 * Gets the location of the object relative to the parent in the form 	 * of a point specifying the object's top-left corner in the screen's 	 * coordinate space.	 *	 * @return An instance of Point representing the top-left corner of the 	 * object's bounds in the coordinate space of the screen; null if	 * this object or its parent are not on the screen	 * @see #getBounds	 * @see #getLocationOnScreen	 */	public Point getLocation() { 	    Rectangle r = getBounds();	    if (r != null) {		return new Point(r.x, r.y);	    } else {		return null;	    }	}		/** 	 * Sets the location of the object relative to the parent.	 * @param p the new position for the top-left corner	 * @see #getLocation	 */	public void setLocation(Point p) {	}		/** 	 * Gets the bounds of this object in the form of a Rectangle object. 	 * The bounds specify this object's width, height, and location	 * relative to its parent. 	 *	 * @return A rectangle indicating this component's bounds; null if 	 * this object is not on the screen.	 * @see #contains	 */	public Rectangle getBounds() {	    return elementInfo.getBounds();	}		/** 	 * Sets the bounds of this object in the form of a Rectangle object. 	 * The bounds specify this object's width, height, and location	 * relative to its parent.	 *		 * @param r rectangle indicating this component's bounds	 * @see #getBounds	 */	public void setBounds(Rectangle r) {	}		/** 	 * Returns the size of this object in the form of a Dimension object. 	 * The height field of the Dimension object contains this object's	 * height, and the width field of the Dimension object contains this 	 * object's width. 	 *	 * @return A Dimension object that indicates the size of this component; 	 * null if this object is not on the screen	 * @see #setSize	 */	public Dimension getSize() {	    Rectangle r = getBounds();	    if (r != null) {		return new Dimension(r.width, r.height);	    } else {		return null;	    }	}		/** 	 * Resizes this object so that it has width and height. 	 *		 * @param d The dimension specifying the new size of the object. 	 * @see #getSize	 */	public void setSize(Dimension d) {	    Component comp = getTextComponent();	    comp.setSize(d);	}		/**	 * Returns the Accessible child, if one exists, contained at the local 	 * coordinate Point.	 *	 * @param p The point relative to the coordinate system of this object.	 * @return the Accessible, if it exists, at the specified location; 	 * otherwise null	 */	public Accessible getAccessibleAt(Point p) {	    ElementInfo innerMostElement = getElementInfoAt(rootElementInfo, p);	    if (innerMostElement instanceof Accessible) {		return (Accessible)innerMostElement;	    } else {		return null;	    }	}        private ElementInfo getElementInfoAt(ElementInfo elementInfo, Point p) {	    if (elementInfo.getBounds() == null) {		return null;	    }	    if (elementInfo.getChildCount() == 0 &&		elementInfo.getBounds().contains(p)) {		return elementInfo;			    } else {		if (elementInfo instanceof TableElementInfo) {		    // Handle table caption as a special case since it's the		    // only table child that is not a table row.		    ElementInfo captionInfo = 			((TableElementInfo)elementInfo).getCaptionInfo();		    if (captionInfo != null) {			Rectangle bounds = captionInfo.getBounds();			if (bounds != null && bounds.contains(p)) {			    return captionInfo;			}		    }		}		for (int i = 0; i < elementInfo.getChildCount(); i++){		    ElementInfo childInfo = elementInfo.getChild(i);                    ElementInfo retValue = getElementInfoAt(childInfo, p);                    if (retValue != null) {                        return retValue;                    }		}	    }            return null;	}		/**	 * Returns whether this object can accept focus or not.   Objects that 	 * can accept focus will also have the AccessibleState.FOCUSABLE state 	 * set in their AccessibleStateSets.	 *	 * @return true if object can accept focus; otherwise false	 * @see AccessibleContext#getAccessibleStateSet	 * @see AccessibleState#FOCUSABLE	 * @see AccessibleState#FOCUSED	 * @see AccessibleStateSet	 */	public boolean isFocusTraversable() {	    Component comp = getTextComponent();	    if (comp instanceof JTextComponent) {		if (((JTextComponent)comp).isEditable()) {		    return true;		}	    }	    return false;	}		/**	 * Requests focus for this object.  If this object cannot accept focus,	 * nothing will happen.  Otherwise, the object will attempt to take	 * focus.	 * @see #isFocusTraversable	 */	public void requestFocus() {            // TIGER - 4856191            if (! isFocusTraversable()) {                return;            }	    Component comp = getTextComponent();	    if (comp instanceof JTextComponent) {		comp.requestFocusInWindow();		try {		    if (elementInfo.validateIfNecessary()) {			// set the caret position to the start of this component			Element elem = elementInfo.getElement();			((JTextComponent)comp).setCaretPosition(elem.getStartOffset());						// fire a AccessibleState.FOCUSED property change event			AccessibleContext ac = editor.getAccessibleContext();			PropertyChangeEvent pce = new PropertyChangeEvent(this,			    AccessibleContext.ACCESSIBLE_STATE_PROPERTY,			    null, AccessibleState.FOCUSED);			ac.firePropertyChange(			    AccessibleContext.ACCESSIBLE_STATE_PROPERTY,			    null, pce);		    }		} catch (IllegalArgumentException e) {		    // don't fire property change event		}	    }	}		/**	 * Adds the specified focus listener to receive focus events from this 	 * component. 	 *	 * @param l the focus listener	 * @see #removeFocusListener	 */	public void addFocusListener(FocusListener l) {	    getTextComponent().addFocusListener(l);	}		/**	 * Removes the specified focus listener so it no longer receives focus 	 * events from this component.	 *	 * @param l the focus listener	 * @see #addFocusListener	 */	public void removeFocusListener(FocusListener l) {	    getTextComponent().removeFocusListener(l);	}	// ... end AccessibleComponent implementation    } // ... end HTMLAccessibleContext     /*     * ElementInfo for text     */    class TextElementInfo extends ElementInfo implements Accessible {        TextElementInfo(Element element, ElementInfo parent) {            super(element, parent);        }	// begin AccessibleText implementation ...	private AccessibleContext accessibleContext;		public AccessibleContext getAccessibleContext() {	    if (accessibleContext == null) {		accessibleContext = new TextAccessibleContext(this);	    }	    return accessibleContext;	}		/*	 * AccessibleContext for text elements	 */	public class TextAccessibleContext extends HTMLAccessibleContext            implements AccessibleText {	    public TextAccessibleContext(ElementInfo elementInfo) {		super(elementInfo);	    }	    	    public AccessibleText getAccessibleText() {		return this;	    }	    	    /**	     * Gets the accessibleName property of this object.  The accessibleName	     * property of an object is a localized String that designates the purpose	     * of the object.  For example, the accessibleName property of a label	     * or button might be the text of the label or button itself.  In the	     * case of an object that doesn't display its name, the accessibleName	     * should still be set.  For example, in the case of a text field used	     * to enter the name of a city, the accessibleName for the en_US locale	     * could be 'city.'	     *	     * @return the localized name of the object; null if this 	     * object does not have a name	     *	     * @see #setAccessibleName	     */	    public String getAccessibleName() {		if (model != null) {		    return (String)model.getProperty(Document.TitleProperty);		} else {		    return null;		}	    }	    	    /**	     * Gets the accessibleDescription property of this object.  If this	     * property isn't set, returns the content type of this	     * <code>JEditorPane</code> instead (e.g. "plain/text", "html/text").	     *	     * @return the localized description of the object; <code>null</code>	     * 	if this object does not have a description	     *	     * @see #setAccessibleName	     */	    public String getAccessibleDescription() {		return editor.getContentType();	    }	    	    /**	     * Gets the role of this object.  The role of the object is the generic	     * purpose or use of the class of this object.  For example, the role	     * of a push button is AccessibleRole.PUSH_BUTTON.  The roles in 	     * AccessibleRole are provided so component developers can pick from	     * a set of predefined roles.  This enables assistive technologies to	     * provide a consistent interface to various tweaked subclasses of 	     * components (e.g., use AccessibleRole.PUSH_BUTTON for all components	     * that act like a push button) as well as distinguish between sublasses	     * that behave differently (e.g., AccessibleRole.CHECK_BOX for check boxes	     * and AccessibleRole.RADIO_BUTTON for radio buttons).	     * <p>Note that the AccessibleRole class is also extensible, so 	     * custom component developers can define their own AccessibleRole's	     * if the set of predefined roles is inadequate.	     *	     * @return an instance of AccessibleRole describing the role of the object	     * @see AccessibleRole	     */	    public AccessibleRole getAccessibleRole() {		return AccessibleRole.TEXT;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91婷婷韩国欧美一区二区| 日韩一二在线观看| 欧美精三区欧美精三区| 久久―日本道色综合久久| 亚洲精品乱码久久久久久久久| 奇米一区二区三区| 在线观看三级视频欧美| 精品嫩草影院久久| 亚洲成av人片在线观看无码| 成人国产在线观看| 久久精子c满五个校花| 免费欧美在线视频| 欧美三级日韩在线| 亚洲色图制服丝袜| 成人免费高清视频| 精品国产一区久久| 蜜臀精品久久久久久蜜臀| 色综合亚洲欧洲| 中文字幕不卡在线观看| 久久69国产一区二区蜜臀 | 亚洲免费观看高清完整版在线观看 | 亚洲天堂久久久久久久| 国产一区二区三区四区五区入口| 欧洲一区在线观看| 一区二区三区在线观看动漫| 99久久伊人久久99| 国产精品萝li| 成人国产免费视频| 国产精品久久福利| 波多野洁衣一区| 国产精品欧美一区二区三区| 国产乱国产乱300精品| 精品国产乱码久久久久久夜甘婷婷 | 色天天综合色天天久久| 综合分类小说区另类春色亚洲小说欧美| 国精产品一区一区三区mba视频 | 国产精品福利影院| 丁香激情综合国产| 国产精品乱码妇女bbbb| av在线一区二区| 亚洲视频免费在线观看| 欧美综合欧美视频| 亚洲综合激情另类小说区| 色噜噜夜夜夜综合网| 亚洲激情综合网| 欧美色图天堂网| 免费在线观看一区| 久久久久久亚洲综合影院红桃 | 天堂一区二区在线免费观看| 69堂亚洲精品首页| 国产专区欧美精品| 国产精品你懂的| 在线精品观看国产| 蜜桃精品视频在线| 精品成人私密视频| av成人免费在线观看| 亚洲一区二区三区中文字幕在线| 欧美精品第1页| 国产综合久久久久影院| 国产精品嫩草影院av蜜臀| 在线观看www91| 久久国产精品99精品国产| 国产欧美一区视频| 在线一区二区视频| 麻豆精品国产91久久久久久| 久久久久99精品国产片| 欧美中文一区二区三区| 久久精品国产精品青草| 国产精品第四页| 678五月天丁香亚洲综合网| 国产精品一区二区在线观看网站| 亚洲图片你懂的| 欧美大片在线观看| 欧美综合在线视频| 国产精品一区二区视频| 视频一区二区不卡| 日本一区免费视频| 3d成人h动漫网站入口| 成人综合婷婷国产精品久久| 香蕉加勒比综合久久| 亚洲国产成人一区二区三区| 欧美精品一级二级| 一本久久a久久免费精品不卡| 乱一区二区av| 亚洲一区二区影院| 中文字幕一区二区在线播放| 日韩西西人体444www| 91久久精品一区二区三区| 国产高清不卡一区二区| 天天av天天翘天天综合网| 1024成人网| 欧美经典一区二区| 欧美变态tickling挠脚心| 欧美日韩综合在线免费观看| 国产99久久久精品| 激情五月激情综合网| 日本视频在线一区| 午夜精品福利在线| 亚洲电影中文字幕在线观看| 国产精品黄色在线观看| 国产欧美一区二区三区在线老狼| 欧美一区二区三区免费观看视频| 在线精品视频免费播放| 99在线精品免费| 高清不卡在线观看| 丁香婷婷综合激情五月色| 久久国产综合精品| 蜜桃传媒麻豆第一区在线观看| 午夜精品久久久久久久久| 夜夜嗨av一区二区三区网页| 亚洲视频一区二区在线| 亚洲天天做日日做天天谢日日欢| 国产精品视频yy9299一区| 国产欧美在线观看一区| 久久精品夜色噜噜亚洲a∨| 欧美精品一区男女天堂| 制服丝袜一区二区三区| 51精品视频一区二区三区| 6080国产精品一区二区| 日韩亚洲欧美在线观看| 精品国产乱码久久久久久图片 | 欧美人与z0zoxxxx视频| 欧美日韩在线不卡| 6080日韩午夜伦伦午夜伦| 欧美一区二区三区视频在线 | 在线免费观看视频一区| 在线亚洲+欧美+日本专区| 在线亚洲免费视频| 欧美理论片在线| 欧美不卡在线视频| 久久精品免视看| 国产精品久久久久影院亚瑟| 亚洲私人影院在线观看| 亚洲国产精品久久不卡毛片| 午夜精品成人在线| 精品一区二区三区在线播放视频| 激情亚洲综合在线| 99re成人精品视频| 欧美日韩不卡一区二区| 精品国产免费一区二区三区四区| 久久久综合精品| 亚洲女厕所小便bbb| 秋霞午夜av一区二区三区| 懂色av中文一区二区三区| 一本在线高清不卡dvd| 7777精品伊人久久久大香线蕉最新版| 欧美tickle裸体挠脚心vk| 久久精品欧美一区二区三区麻豆| 亚洲美女电影在线| 精品夜夜嗨av一区二区三区| 成人免费视频视频| 9191精品国产综合久久久久久| 久久一日本道色综合| 亚洲精品综合在线| 国产综合久久久久影院| 欧美午夜片在线看| 国产女同互慰高潮91漫画| 亚洲一区二区成人在线观看| 精品一区二区在线免费观看| 91久久奴性调教| 国产香蕉久久精品综合网| 亚洲成人动漫精品| 成人av影院在线| 欧美mv日韩mv| 一片黄亚洲嫩模| 国产91丝袜在线播放九色| 欧美日韩国产综合一区二区三区| 欧美极品美女视频| 久久99精品久久久久| 欧美在线影院一区二区| 欧美国产一区二区在线观看| 青青青伊人色综合久久| 色婷婷综合中文久久一本| 久久久高清一区二区三区| 日韩 欧美一区二区三区| 日本精品裸体写真集在线观看 | 成人午夜免费视频| 日韩欧美国产一区二区在线播放| 亚洲精品你懂的| av一本久道久久综合久久鬼色| 日韩欧美激情一区| 日韩精品电影在线观看| 欧美三区在线观看| 亚洲欧美一区二区三区国产精品| 国产精品456露脸| 日韩久久久久久| 五月天亚洲婷婷| 欧美日韩专区在线| 亚洲成a人在线观看| 在线视频亚洲一区| 亚洲制服欧美中文字幕中文字幕| proumb性欧美在线观看| 国产农村妇女精品| 成人精品视频一区二区三区尤物| 久久亚洲综合色一区二区三区 | 91香蕉视频在线| 日韩理论电影院| 91久久线看在观草草青青| 一区二区在线观看视频| 日本福利一区二区|