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()); }