Lines Matching defs:clickCount
322 * clickCount will be valid for only three mouse events :<BR>
326 * For the above, the <code>clickCount</code> will be at least 1.
332 int clickCount;
472 * <tt>MouseEvent(source, id, when, modifiers, x, y, clickCount, popupTrigger, button)</tt>
476 * x, y, xAbs, yAbs, clickCount, popupTrigger, button)</tt>
503 * @param clickCount The number of mouse clicks associated with event.
551 int x, int y, int clickCount, boolean popupTrigger,
554 this(source, id, when, modifiers, x, y, 0, 0, clickCount, popupTrigger, button);
571 * <tt>MouseEvent(source, id, when, modifiers, x, y, clickCount, popupTrigger)</tt>
575 * x, y, xAbs, yAbs, clickCount, popupTrigger, MouseEvent.NOBUTTON)</tt>
601 * @param clickCount The number of mouse clicks associated with event.
617 int x, int y, int clickCount, boolean popupTrigger) {
618 this(source, id, when, modifiers, x, y, clickCount, popupTrigger, NOBUTTON);
676 * @param clickCount The number of mouse clicks associated with event.
731 int clickCount, boolean popupTrigger, int button)
738 this.clickCount = clickCount;
839 return clickCount;
1053 str.append(",clickCount=").append(clickCount);