Subversion Repository Public Repository

litesoft

Diff Revisions 282 vs 475 for /trunk/Java/GWT/Client/src/com/google/gwt/gen2/event/logical/shared/HasShowRangeHandlers.java

Diff revisions: vs.
  @@ -12,24 +12,28 @@
12 12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 13 * License for the specific language governing permissions and limitations under
14 14 * the License.
15 - */package com.google.gwt.gen2.event.logical.shared;
15 + */
16 + package com.google.gwt.gen2.event.logical.shared;
16 17
17 - import com.google.gwt.gen2.event.shared.HandlerRegistration;
18 + import com.google.gwt.gen2.event.shared.*;
18 19
19 20 /**
20 21 * A widget that implements this interface is a public source of
21 22 * {@link ShowRangeEvent} events.
22 - *
23 + *
23 24 * @param <Value> type of value
25 + *
24 26 * @deprecated use the com.google.gwt.event.logical.shared classes instead
25 27 */
26 28 @Deprecated
27 - public interface HasShowRangeHandlers<Value> {
28 - /**
29 - * Adds a {@link ShowRangeEvent} handler.
30 - *
31 - * @param handler the handler
32 - * @return the handler registration
33 - */
34 - HandlerRegistration addShowRangeHandler(ShowRangeHandler<Value> handler);
29 + public interface HasShowRangeHandlers<Value>
30 + {
31 + /**
32 + * Adds a {@link ShowRangeEvent} handler.
33 + *
34 + * @param handler the handler
35 + *
36 + * @return the handler registration
37 + */
38 + HandlerRegistration addShowRangeHandler( ShowRangeHandler<Value> handler );
35 39 }