/* * Copyright 2006 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package com.google.gwt.user.client.ui; /** * {@link ClickListenerCollection} used to correctly hook up listeners which * need to listen to events from another source. * <p> * For example, {@link Composite} widgets often need to listen to events * generated on their wrapped widget. Upon the firing of a wrapped widget's * event, the composite widget must fire its own listeners with itself as the * source of the event. To use a {@link DelegatingClickListenerCollection}, * simply use the {@link DelegatingClickListenerCollection} instead of a * {@link ClickListenerCollection}. For example, in {@link SuggestBox}, the * following code is used to listen to click events on the {@link SuggestBox}'s * underlying widget. * </p> * * <pre> * public void addClickListener(ClickListener listener) { * if (clickListeners == null) { * clickListeners = new DelegatingClickListenerCollection(this, box); * } * clickListeners.add(listener); * } *</pre> * * @deprecated Use {@link Widget#delegateEvent} instead */ @Deprecated public class DelegatingClickListenerCollection extends ClickListenerCollection implements ClickListener { private final Widget owner; /** * Constructor for {@link DelegatingClickListenerCollection}. * * @param owner owner of listeners * @param delegatedTo source of events */ public DelegatingClickListenerCollection(Widget owner, SourcesClickEvents delegatedTo) { this.owner = owner; delegatedTo.addClickListener(this); } public void onClick(Widget sender) { fireClick(owner); } }