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

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

?? component.java

?? gcc的組建
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
/* Component.java -- a graphics component   Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004  Free Software FoundationThis file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */package java.awt;import java.awt.dnd.DropTarget;import java.awt.event.ActionEvent;import java.awt.event.ComponentEvent;import java.awt.event.ComponentListener;import java.awt.event.FocusEvent;import java.awt.event.FocusListener;import java.awt.event.HierarchyBoundsListener;import java.awt.event.HierarchyEvent;import java.awt.event.HierarchyListener;import java.awt.event.InputEvent;import java.awt.event.InputMethodEvent;import java.awt.event.InputMethodListener;import java.awt.event.KeyEvent;import java.awt.event.KeyListener;import java.awt.event.MouseEvent;import java.awt.event.MouseListener;import java.awt.event.MouseMotionListener;import java.awt.event.MouseWheelEvent;import java.awt.event.MouseWheelListener;import java.awt.event.PaintEvent;import java.awt.event.WindowEvent;import java.awt.im.InputContext;import java.awt.im.InputMethodRequests;import java.awt.image.BufferStrategy;import java.awt.image.ColorModel;import java.awt.image.ImageObserver;import java.awt.image.ImageProducer;import java.awt.image.VolatileImage;import java.awt.peer.ComponentPeer;import java.awt.peer.LightweightPeer;import java.beans.PropertyChangeListener;import java.beans.PropertyChangeSupport;import java.io.IOException;import java.io.ObjectInputStream;import java.io.ObjectOutputStream;import java.io.PrintStream;import java.io.PrintWriter;import java.io.Serializable;import java.lang.reflect.Array;import java.util.Collections;import java.util.EventListener;import java.util.HashSet;import java.util.Iterator;import java.util.Locale;import java.util.Set;import java.util.Vector;import javax.accessibility.Accessible;import javax.accessibility.AccessibleComponent;import javax.accessibility.AccessibleContext;import javax.accessibility.AccessibleRole;import javax.accessibility.AccessibleState;import javax.accessibility.AccessibleStateSet;/** * The root of all evil. All graphical representations are subclasses of this * giant class, which is designed for screen display and user interaction. * This class can be extended directly to build a lightweight component (one * not associated with a native window); lightweight components must reside * inside a heavyweight window. * * <p>This class is Serializable, which has some big implications. A user can * save the state of all graphical components in one VM, and reload them in * another. Note that this class will only save Serializable listeners, and * ignore the rest, without causing any serialization exceptions. However, by * making a listener serializable, and adding it to another element, you link * in that entire element to the state of this component. To get around this, * use the idiom shown in the example below - make listeners non-serializable * in inner classes, rather than using this object itself as the listener, if * external objects do not need to save the state of this object. * * <pre> * import java.awt.*; * import java.awt.event.*; * import java.io.Serializable; * class MyApp implements Serializable * { *   BigObjectThatShouldNotBeSerializedWithAButton bigOne; *   // Serializing aButton will not suck in an instance of MyApp, with its *   // accompanying field bigOne. *   Button aButton = new Button(); *   class MyActionListener implements ActionListener *   { *     public void actionPerformed(ActionEvent e) *     { *       System.out.println("Hello There"); *     } *   } *   MyApp() *   { *     aButton.addActionListener(new MyActionListener()); *   } * } * </pre> * * <p>Status: Incomplete. The event dispatch mechanism is implemented. All * other methods defined in the J2SE 1.3 API javadoc exist, but are mostly * incomplete or only stubs; except for methods relating to the Drag and * Drop, Input Method, and Accessibility frameworks: These methods are * present but commented out. * * @author original author unknown * @author Eric Blake (ebb9@email.byu.edu) * @since 1.0 * @status still missing 1.4 support */public abstract class Component  implements ImageObserver, MenuContainer, Serializable{  // Word to the wise - this file is huge. Search for '\f' (^L) for logical  // sectioning by fields, public API, private API, and nested classes.  /**   * Compatible with JDK 1.0+.   */  private static final long serialVersionUID = -7644114512714619750L;  /**   * Constant returned by the <code>getAlignmentY</code> method to indicate   * that the component wishes to be aligned to the top relative to   * other components.   *   * @see #getAlignmentY()   */  public static final float TOP_ALIGNMENT = 0;  /**   * Constant returned by the <code>getAlignmentY</code> and   * <code>getAlignmentX</code> methods to indicate   * that the component wishes to be aligned to the center relative to   * other components.   *   * @see #getAlignmentX()   * @see #getAlignmentY()   */  public static final float CENTER_ALIGNMENT = 0.5f;  /**   * Constant returned by the <code>getAlignmentY</code> method to indicate   * that the component wishes to be aligned to the bottom relative to   * other components.   *   * @see #getAlignmentY()   */  public static final float BOTTOM_ALIGNMENT = 1;  /**   * Constant returned by the <code>getAlignmentX</code> method to indicate   * that the component wishes to be aligned to the right relative to   * other components.   *   * @see #getAlignmentX()   */  public static final float RIGHT_ALIGNMENT = 1;  /**   * Constant returned by the <code>getAlignmentX</code> method to indicate   * that the component wishes to be aligned to the left relative to   * other components.   *   * @see #getAlignmentX()   */  public static final float LEFT_ALIGNMENT = 0;  /**   * Make the treelock a String so that it can easily be identified   * in debug dumps. We clone the String in order to avoid a conflict in   * the unlikely event that some other package uses exactly the same string   * as a lock object.   */  static final Object treeLock = new String("AWT_TREE_LOCK");  // Serialized fields from the serialization spec.  /**   * The x position of the component in the parent's coordinate system.   *   * @see #getLocation()   * @serial the x position   */  int x;  /**   * The y position of the component in the parent's coordinate system.   *   * @see #getLocation()   * @serial the y position   */  int y;  /**   * The component width.   *   * @see #getSize()   * @serial the width   */  int width;  /**   * The component height.   *   * @see #getSize()   * @serial the height   */  int height;  /**   * The foreground color for the component. This may be null.   *   * @see #getForeground()   * @see #setForeground(Color)   * @serial the foreground color   */  Color foreground;  /**   * The background color for the component. This may be null.   *   * @see #getBackground()   * @see #setBackground(Color)   * @serial the background color   */  Color background;  /**   * The default font used in the component. This may be null.   *   * @see #getFont()   * @see #setFont(Font)   * @serial the font   */  Font font;  /**   * The font in use by the peer, or null if there is no peer.   *   * @serial the peer's font   */  Font peerFont;  /**   * The cursor displayed when the pointer is over this component. This may   * be null.   *   * @see #getCursor()   * @see #setCursor(Cursor)   */  Cursor cursor;  /**   * The locale for the component.   *   * @see #getLocale()   * @see #setLocale(Locale)   */  Locale locale = Locale.getDefault ();  /**   * True if the object should ignore repaint events (usually because it is   * not showing).   *   * @see #getIgnoreRepaint()   * @see #setIgnoreRepaint(boolean)   * @serial true to ignore repaints   * @since 1.4   */  boolean ignoreRepaint;  /**   * True when the object is visible (although it is only showing if all   * ancestors are likewise visible). For component, this defaults to true.   *   * @see #isVisible()   * @see #setVisible(boolean)   * @serial true if visible   */  boolean visible = true;  /**   * True if the object is enabled, meaning it can interact with the user.   * For component, this defaults to true.   *   * @see #isEnabled()   * @see #setEnabled(boolean)   * @serial true if enabled   */  boolean enabled = true;  /**   * True if the object is valid. This is set to false any time a size   * adjustment means the component need to be layed out again.   *   * @see #isValid()   * @see #validate()   * @see #invalidate()   * @serial true if layout is valid   */  boolean valid;  /**   * The DropTarget for drag-and-drop operations.   *   * @see #getDropTarget()   * @see #setDropTarget(DropTarget)   * @serial the drop target, or null   * @since 1.2   */  DropTarget dropTarget;  /**   * The list of popup menus for this component.   *   * @see #add(PopupMenu)   * @serial the list of popups   */  Vector popups;  /**   * The component's name. May be null, in which case a default name is   * generated on the first use.   *   * @see #getName()   * @see #setName(String)   * @serial the name   */  String name;  /**   * True once the user has set the name. Note that the user may set the name   * to null.   *   * @see #name   * @see #getName()   * @see #setName(String)   * @serial true if the name has been explicitly set   */  boolean nameExplicitlySet;  /**   * Indicates if the object can be focused. Defaults to true for components.   *   * @see #isFocusable()   * @see #setFocusable(boolean)   * @since 1.4   */  boolean focusable = true;  /**   * Tracks whether this component's {@link #isFocusTraversable}   * method has been overridden.   *   * @since 1.4   */  int isFocusTraversableOverridden;  /**   * The focus traversal keys, if not inherited from the parent or   * default keyboard focus manager. These sets will contain only   * AWTKeyStrokes that represent press and release events to use as   * focus control.   *   * @see #getFocusTraversalKeys(int)   * @see #setFocusTraversalKeys(int, Set)   * @since 1.4   */  Set[] focusTraversalKeys;  /**   * True if focus traversal keys are enabled. This defaults to true for   * Component. If this is true, keystrokes in focusTraversalKeys are trapped   * and processed automatically rather than being passed on to the component.   *   * @see #getFocusTraversalKeysEnabled()   * @see #setFocusTraversalKeysEnabled(boolean)   * @since 1.4   */  boolean focusTraversalKeysEnabled = true;  /**   * Cached information on the minimum size. Should have been transient.   *   * @serial ignore   */  Dimension minSize;  /**   * Cached information on the preferred size. Should have been transient.   *   * @serial ignore   */  Dimension prefSize;  /**   * Set to true if an event is to be handled by this component, false if   * it is to be passed up the hierarcy.   *   * @see #dispatchEvent(AWTEvent)   * @serial true to process event locally   */  boolean newEventsOnly;  /**   * Set by subclasses to enable event handling of particular events, and   * left alone when modifying listeners. For component, this defaults to   * enabling only input methods.   *   * @see #enableInputMethods(boolean)   * @see AWTEvent   * @serial the mask of events to process   */  long eventMask = AWTEvent.INPUT_ENABLED_EVENT_MASK;  /**   * Describes all registered PropertyChangeListeners.   *   * @see #addPropertyChangeListener(PropertyChangeListener)   * @see #removePropertyChangeListener(PropertyChangeListener)   * @see #firePropertyChange(String, Object, Object)   * @serial the property change listeners   * @since 1.2   */  PropertyChangeSupport changeSupport;  /**   * True if the component has been packed (layed out).   *   * @serial true if this is packed   */  boolean isPacked;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
大胆欧美人体老妇| 国精产品一区一区三区mba桃花 | 欧美一级久久久| 午夜成人免费电影| 欧美一二三在线| 国产一区二三区| 国产精品情趣视频| 欧美中文字幕久久| 美女网站一区二区| 国产欧美一区二区精品仙草咪| 成人开心网精品视频| 亚洲欧美日韩人成在线播放| 欧美性色黄大片| 美女视频免费一区| 国产精品乱码久久久久久| 97se亚洲国产综合自在线不卡| 亚洲伦理在线免费看| 日韩一区国产二区欧美三区| 国产成人日日夜夜| 亚洲成人激情自拍| 国产日本亚洲高清| 欧美三级电影网站| 国产乱子轮精品视频| 亚洲免费在线看| 亚洲精品一区二区三区蜜桃下载 | 国产精品乱码久久久久久| 欧美性色aⅴ视频一区日韩精品| 免费成人你懂的| 中文字幕一区二区三区在线不卡| 在线不卡a资源高清| 国产不卡免费视频| 亚洲自拍欧美精品| 国产清纯在线一区二区www| 欧美最猛性xxxxx直播| 国内精品国产成人国产三级粉色| 亚洲柠檬福利资源导航| 欧美精品一区二区不卡| 91福利精品第一导航| 国产精品一线二线三线精华| 亚洲一区国产视频| 欧美国产综合一区二区| 欧美一二三四区在线| 色综合久久久网| 国产麻豆成人传媒免费观看| 亚洲成av人片| 最新中文字幕一区二区三区 | 色悠悠久久综合| 国模娜娜一区二区三区| 婷婷丁香激情综合| 亚洲乱码国产乱码精品精小说| 久久久蜜臀国产一区二区| 在线不卡免费欧美| 欧美性xxxxx极品少妇| 成人福利视频在线| 国产精品1024| 激情成人综合网| 日韩1区2区日韩1区2区| 一区二区三区免费| 亚洲同性同志一二三专区| 国产日韩欧美高清在线| 26uuu精品一区二区| 欧美一级片在线观看| 欧美图区在线视频| 欧美曰成人黄网| 欧美中文一区二区三区| 91啪九色porn原创视频在线观看| 国产成人免费xxxxxxxx| 国产乱人伦偷精品视频免下载 | 国产一区二区三区免费在线观看| 午夜私人影院久久久久| 一区二区三区不卡视频在线观看| 国产精品欧美久久久久无广告| 久久久久久久一区| 久久精品亚洲国产奇米99| www久久久久| 精品不卡在线视频| 在线不卡免费欧美| 欧美一级专区免费大片| 欧美一区二区精美| 日韩欧美一区中文| 精品国产伦理网| 久久精品一区二区三区不卡| 国产亚洲欧美中文| 中文字幕欧美激情| 中文字幕综合网| 一区二区三区欧美在线观看| 一区二区三区不卡视频| 亚洲午夜久久久| 婷婷久久综合九色国产成人| 蜜桃久久久久久| 国产一本一道久久香蕉| 高清视频一区二区| 日本乱人伦aⅴ精品| 欧美三级日韩三级国产三级| 欧美一区二区日韩一区二区| 精品国产一区二区三区四区四| 欧美变态凌虐bdsm| 国产精品网站在线播放| 成人欧美一区二区三区黑人麻豆 | 日韩av在线播放中文字幕| 美脚の诱脚舐め脚责91| 国产综合色产在线精品| 成人h版在线观看| 色成年激情久久综合| 69p69国产精品| 久久久久国产精品麻豆ai换脸| 国产精品第一页第二页第三页| 一区二区免费视频| 奇米精品一区二区三区四区 | 亚洲在线视频免费观看| 美腿丝袜亚洲三区| av动漫一区二区| 欧美一区二区二区| 国产精品素人视频| 亚洲国产欧美日韩另类综合| 免费在线看成人av| 9i在线看片成人免费| 制服.丝袜.亚洲.中文.综合| 久久久精品免费免费| 亚洲电影第三页| 成人永久aaa| 777精品伊人久久久久大香线蕉| 国产日韩一级二级三级| 午夜精品久久久久久不卡8050| 国产一区二区三区免费| 91久久线看在观草草青青| 欧美mv和日韩mv的网站| 亚洲女同ⅹxx女同tv| 国内偷窥港台综合视频在线播放| 色综合久久天天| 久久精品一区二区| 日本麻豆一区二区三区视频| 99re亚洲国产精品| 久久精品亚洲乱码伦伦中文| 图片区日韩欧美亚洲| 成人毛片老司机大片| 精品日韩欧美在线| 亚洲国产一区二区视频| 成人激情校园春色| 欧美电影免费观看高清完整版在线观看| 亚洲欧洲中文日韩久久av乱码| 国产一区二区三区不卡在线观看| 欧美色图一区二区三区| 国产精品第五页| 国产精品自产自拍| 欧美tk—视频vk| 日韩精品一级二级| 欧美性生活久久| 亚洲欧洲日韩综合一区二区| 国产大陆a不卡| 精品国产乱码久久久久久免费| 婷婷国产在线综合| 欧美日韩精品一二三区| 亚洲精品成人少妇| 91视频免费播放| 日韩码欧中文字| 成人av在线影院| 国产精品无遮挡| 国产精品一区不卡| 久久久亚洲综合| 国产综合久久久久久久久久久久| 欧美一卡2卡3卡4卡| 日本成人超碰在线观看| 欧美嫩在线观看| 五月天一区二区| 正在播放亚洲一区| 全国精品久久少妇| 91精品国产入口| 麻豆国产精品视频| 精品国产免费人成电影在线观看四季| 日本大胆欧美人术艺术动态 | 在线欧美日韩国产| 亚洲综合免费观看高清完整版| 91久久线看在观草草青青| 一区二区三区在线观看网站| 欧美主播一区二区三区美女| 亚洲一区在线视频| 欧美疯狂性受xxxxx喷水图片| 日韩国产精品久久| 欧美不卡一区二区三区| 国产一区二区网址| 国产欧美视频在线观看| 99精品在线免费| 亚洲午夜av在线| 欧美日韩成人综合天天影院| 日韩成人一区二区三区在线观看| 欧美一级生活片| 国产尤物一区二区| 亚洲欧美中日韩| 欧美特级限制片免费在线观看| 午夜欧美2019年伦理| 精品美女被调教视频大全网站| 国产成人精品aa毛片| 亚洲黄色小视频| 欧美浪妇xxxx高跟鞋交| 激情综合网av| 国产精品久久一卡二卡| 欧美日韩一区二区三区在线看| 麻豆成人久久精品二区三区红| 国产欧美一区二区精品仙草咪|