{@code Save Delete 169170171172173174175 * Event fired when the close is initiated on the alert * * @param evt event */ protected void onClose(final Event evt) { fireEvent(new AlertCloseEvent(evt)); } View Full Code Here 179180181182183184185 * * @param evt event */ protected void onClosed(final Event evt) { removeFromParent(); fireEvent(new AlertClosedEvent(evt)); } View Full Code Here 142143144145146147148 * Fired when the carousel is finished changing slides * * @param evt event */ private void onSlid(final Event evt) { fireEvent(new CarouselSlidEvent(this, evt)); } View Full Code Here 133134135136137138139 * Fired when the carousel is starting to change slides * * @param evt event */ private void onSlide(final Event evt) { fireEvent(new CarouselSlideEvent(this, evt)); } View Full Code Here 232233234235236237238 @Override public void onHide(final Event e) { // On hide we remove focus from the textbox textBox.setFocus(false); fireEvent(new HideEvent(e)); } View Full Code Here 219220221222223224225 @Override public void onShow(final Event e) { // On show we put focus on the textbox textBox.setFocus(true); fireEvent(new ShowEvent(e)); } View Full Code Here 8586878889909192 */ public void showTab(final boolean fireEvents) { showTab(anchor.getElement()); if (fireEvents) { fireEvent(new TabShowEvent(this, null)); } } View Full Code Here 205206207208209210211 * * @param evt Event * @see org.gwtbootstrap3.client.shared.event.ShowEvent */ protected void onShow(final Event evt) { fireEvent(new TabShowEvent(this, evt)); } View Full Code Here 216217218219220221222 * * @param evt Event * @see org.gwtbootstrap3.client.shared.event.ShownEvent */ protected void onShown(final Event evt) { fireEvent(new TabShownEvent(this, evt)); } View Full Code Here 3738394041424344 implements HasHref, HasTargetHistoryToken, HasClickHandlers, Focusable, HasDataToggle, HasIcon, HasIconPosition { protected final Anchor anchor; protected AbstractAnchorListItem() { anchor = new Anchor(); add(anchor, (Element) getElement()); } View Full Code Here 0 1 2 TOP Related Classes of org.gwtbootstrap3.client.ui.Button com.google.gwt.core.client.JavaScriptObject com.google.gwt.core.client.JsArray com.google.gwt.core.client.JsArrayInteger com.google.gwt.core.client.JsArrayString com.google.gwt.core.client.JsDate com.google.gwt.dom.client.Element com.google.gwt.dom.client.EventTarget com.google.gwt.dom.client.InputElement com.google.gwt.dom.client.LabelElement com.google.gwt.dom.client.NativeEvent Copyright © 2018 www.massapicom. All rights reserved. All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.
169170171172173174175
* Event fired when the close is initiated on the alert * * @param evt event */ protected void onClose(final Event evt) { fireEvent(new AlertCloseEvent(evt)); }
179180181182183184185
* * @param evt event */ protected void onClosed(final Event evt) { removeFromParent(); fireEvent(new AlertClosedEvent(evt)); }
142143144145146147148
* Fired when the carousel is finished changing slides * * @param evt event */ private void onSlid(final Event evt) { fireEvent(new CarouselSlidEvent(this, evt)); }
133134135136137138139
* Fired when the carousel is starting to change slides * * @param evt event */ private void onSlide(final Event evt) { fireEvent(new CarouselSlideEvent(this, evt)); }
232233234235236237238
@Override public void onHide(final Event e) { // On hide we remove focus from the textbox textBox.setFocus(false); fireEvent(new HideEvent(e)); }
219220221222223224225
@Override public void onShow(final Event e) { // On show we put focus on the textbox textBox.setFocus(true); fireEvent(new ShowEvent(e)); }
8586878889909192
*/ public void showTab(final boolean fireEvents) { showTab(anchor.getElement()); if (fireEvents) { fireEvent(new TabShowEvent(this, null)); } }
205206207208209210211
* * @param evt Event * @see org.gwtbootstrap3.client.shared.event.ShowEvent */ protected void onShow(final Event evt) { fireEvent(new TabShowEvent(this, evt)); }
216217218219220221222
* * @param evt Event * @see org.gwtbootstrap3.client.shared.event.ShownEvent */ protected void onShown(final Event evt) { fireEvent(new TabShownEvent(this, evt)); }
3738394041424344
implements HasHref, HasTargetHistoryToken, HasClickHandlers, Focusable, HasDataToggle, HasIcon, HasIconPosition { protected final Anchor anchor; protected AbstractAnchorListItem() { anchor = new Anchor(); add(anchor, (Element) getElement()); }