jdk/src/java.desktop/share/classes/java/awt/Component.java
changeset 28059 e576535359cc
parent 27502 4a8eca9c6f19
child 28985 33e7de0337d9
equal deleted inserted replaced
28058:87940c838900 28059:e576535359cc
  4279         public void show() {
  4279         public void show() {
  4280             flip(caps.getFlipContents());
  4280             flip(caps.getFlipContents());
  4281         }
  4281         }
  4282 
  4282 
  4283         /**
  4283         /**
  4284          * Makes specified region of the the next available buffer visible
  4284          * Makes specified region of the next available buffer visible
  4285          * by either blitting or flipping.
  4285          * by either blitting or flipping.
  4286          */
  4286          */
  4287         void showSubRegion(int x1, int y1, int x2, int y2) {
  4287         void showSubRegion(int x1, int y1, int x2, int y2) {
  4288             flipSubRegion(x1, y1, x2, y2, caps.getFlipContents());
  4288             flipSubRegion(x1, y1, x2, y2, caps.getFlipContents());
  4289         }
  4289         }
  7429      * Set from an ancestor, or from the current KeyboardFocusManager.
  7429      * Set from an ancestor, or from the current KeyboardFocusManager.
  7430      *
  7430      *
  7431      * @param id one of KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,
  7431      * @param id one of KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,
  7432      *        KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS, or
  7432      *        KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS, or
  7433      *        KeyboardFocusManager.UP_CYCLE_TRAVERSAL_KEYS
  7433      *        KeyboardFocusManager.UP_CYCLE_TRAVERSAL_KEYS
  7434      * @return <code>true</code> if the the Set of focus traversal keys for the
  7434      * @return <code>true</code> if the Set of focus traversal keys for the
  7435      *         given focus traversal operation has been explicitly defined for
  7435      *         given focus traversal operation has been explicitly defined for
  7436      *         this Component; <code>false</code> otherwise.
  7436      *         this Component; <code>false</code> otherwise.
  7437      * @throws IllegalArgumentException if id is not one of
  7437      * @throws IllegalArgumentException if id is not one of
  7438      *         KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,
  7438      *         KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,
  7439      *         KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS, or
  7439      *         KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS, or