/* * Copyright (C) 2015 Red Hat, Inc. and/or its affiliates. * * 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 org.jboss.errai.ui.shared.api.annotations; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Inherited; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import com.google.gwt.dom.client.Element; import com.google.gwt.user.client.Event; import jsinterop.annotations.JsType; /** * This annotation may only be used in classes that have been annotated with {@link Templated}, * or in a super-class of said types. * <p> * Indicate the types of events to be handled when used in conjunction with a corresponding method that has been * annotated with {@link EventHandler}; these types are specified using a bit mask in the {@link #value()} attribute. * <p> * <b>Native events on DOM Elements</b> * <p> * This use of this annotation does not require that target {@link Element} instances be referenced via * {@link DataField} in the {@link Templated} component; they may also target un-referenced * <code>data-field</code> elements from the corresponding HTML template. This may also be used with * native {@link JsType JsTypes} wrapping DOM elements. * <p> * Example: * <p> * * <pre> * @Templated * public class QuickHandlerComponent extends Composite * { * @DataField * private AnchorElement link = DOM.createAnchor().cast(); * * @EventHandler("link") * @SinkNative(Event.ONMOUSEOVER) * public void doSomething(Event e) * { * // do something * } * * @EventHandler("div") * @SinkNative(Event.ONCLICK | Event.ONMOUSEOVER) * public void doSomethingElse(Event e) * { * // do something with an element not otherwise referenced in our component * } * } * </pre> * * <p> * <b>See also:</b> {@link EventHandler}, {@link Templated}, {@link DataField} * * @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a> * */ @Inherited @Documented @Target({ ElementType.METHOD }) @Retention(RetentionPolicy.RUNTIME) public @interface SinkNative { /** * Specifies the types of {@link Event} instances that are handled by the annotated handler method. Multiple event * types may be handled using a bit-mask of the form: * <p> * * <pre> * @EventHandler("div") * @SinkNative(Event.ONCLICK | Event.ONMOUSEOVER) * public void doSomething(Event e) * { * // do something * } * </pre> */ int value(); }