Lines Matching refs:by

7  * published by the Free Software Foundation.  Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
89 * <li>A "pluggable look and feel" (L&F) that can be specified by the
90 * programmer or (optionally) selected by the user at runtime.
91 * The look and feel for each component is provided by a
294 * Constant used by some of the APIs to mean that no condition is defined.
299 * The key used by <code>JComponent</code> to access keyboard bindings.
580 * property to the value returned by
954 * <code>ComponentUI.update</code>, which is called by
968 * Invoked by Swing to draw components.
1181 * this ability and its return value will be changed by this method: to
1267 * You can detect changes in the value of this property by listening for
1272 * by other high level Swing printing APIs. However, it deals strictly with
1305 * @deprecated As of 1.4, replaced by
1361 * <code>JComponent</code>'s focus traversal cycle by unconditionally
1372 * @deprecated As of 1.4, replaced by <code>FocusTraversalPolicy</code>
1393 * Returns the <code>Component</code> set by a prior call to
1402 * @deprecated As of 1.4, replaced by <code>FocusTraversalPolicy</code>.
1554 * This method is intended for use by focus implementations. Client code
1569 * input in the current focus owner is not "passed" by the input
2073 * to be invoked (usually by way of adapter objects).
2608 * @deprecated As of 1.4, replaced by
2709 * by subclasses of <code>JComponent</code> or
2887 * that was not consumed by the <code>FocusManager</code>,
2920 // If we have a binding by an extended code, use it.
2958 * actually interested by the key event. Let's try the other
3123 * events by calling <code>scrollRectToVisible</code> with a
3193 * to drops, you can disable drop support entirely either by removing the
3194 * drop target ({@code setDropTarget(null)}) or by de-activating it
3202 * set by the developer to a {@code non-null} value. Second, if the
3282 * @param location the drop location (as calculated by
3300 * Needed by <code>JTree</code>.
3306 * Processes mouse events occurring on this component by
3348 * This is invoked by the <code>RepaintManager</code> if
3439 // This class is used by the KeyboardState class to provide a single
3613 * replaced by <code>java.awt.Component.setEnabled(boolean)</code>.
3629 * replaced by <code>java.awt.Component.setEnabled(boolean)</code>.
3651 * <code>JComponent</code>. The method implemented by this base
3665 * accessibility. This class is not meant to be used directly by
3667 * subclassed by component developers.
3682 * Though the class is abstract, this should be called by
4044 * to annotate components that were created by another module.
4103 * the property has not already been set by the client program.
4196 * replaced by <code>Component.setBounds(int, int, int, int)</code>.
4372 * If the specified rectangle is completely obscured by any of this
4384 * @return true if the specified rectangle is obscured by an opaque child
4527 * property is vetoed by the component
4710 // AncestorListeners are handled by the AncestorNotifier
4714 // VetoableChangeListeners are handled by VetoableChangeSupport
4718 // PropertyChangeListeners are handled by PropertyChangeSupport
4735 * This method is called by the toolkit internally and should
4736 * not be called directly by programs.
4753 * This method is called by the toolkit internally and should
4754 * not be called directly by programs.
4875 * If this method returns true, <code>revalidate</code> calls by
4878 * Returns false by default. <code>JScrollPane</code> overrides
5064 // . Completely obscured by an opaque sibling, in which
5066 // . Partially obscured by a sibling: need to start
5123 int by = c.getY();
5128 paintImmediatelyClip.y += by;
5130 offsetY += by;
5236 * obscured by a sibling.
5288 * be painted it is first check that the child is not obscured by another
5360 * This is called from Component by way of reflection. Do NOT change