Tabnine Logo
TabPanel.insert
Code IndexAdd Tabnine to your IDE (free)

How to use
insert
method
in
com.google.gwt.user.client.ui.TabPanel

Best Java code snippets using com.google.gwt.user.client.ui.TabPanel.insert (Showing top 20 results out of 315)

origin: com.google.gwt/gwt-servlet

/**
 * Adds a widget to the tab panel. If the Widget is already attached to the
 * TabPanel, it will be moved to the right-most index.
 *
 * @param w the widget to be added
 * @param tabText the text to be shown on its tab
 */
public void add(Widget w, String tabText) {
 insert(w, tabText, getWidgetCount());
}
origin: com.google.gwt/gwt-servlet

/**
 * Convenience overload to allow {@link IsWidget} to be used directly.
 */
public void insert(IsWidget widget, String tabText, int beforeIndex) {
 insert(asWidgetOrNull(widget), tabText, beforeIndex);
}
origin: com.google.gwt/gwt-servlet

/**
 * Inserts a widget into the tab panel. If the Widget is already attached to
 * the TabPanel, it will be moved to the requested index.
 *
 * @param widget the widget to be inserted
 * @param tabText the text to be shown on its tab
 * @param beforeIndex the index before which it will be inserted
 */
@SuppressIsSafeHtmlCastCheck
public void insert(Widget widget, String tabText, int beforeIndex) {
 insert(widget, tabText, false, beforeIndex);
}
origin: com.google.gwt/gwt-servlet

/**
 * Adds a widget to the tab panel. If the Widget is already attached to the
 * TabPanel, it will be moved to the right-most index.
 *
 * @param w the widget to be added
 * @param tabWidget the widget to be shown in the tab
 */
public void add(Widget w, Widget tabWidget) {
 insert(w, tabWidget, getWidgetCount());
}
origin: com.google.gwt/gwt-servlet

/**
 * Convenience overload to allow {@link IsWidget} to be used directly.
 */
public void insert(IsWidget widget, IsWidget tabWidget, int beforeIndex) {
 insert(asWidgetOrNull(widget), asWidgetOrNull(tabWidget), beforeIndex);
}
origin: com.google.gwt/gwt-servlet

/**
 * Adds a widget to the tab panel. If the Widget is already attached to the
 * TabPanel, it will be moved to the right-most index.
 *
 * @param w the widget to be added
 * @param tabText the text to be shown on its tab
 * @param asHTML <code>true</code> to treat the specified text as HTML
 */
public void add(Widget w, @IsSafeHtml String tabText, boolean asHTML) {
 insert(w, tabText, asHTML, getWidgetCount());
}
origin: com.google.gwt/gwt-servlet

/**
 * Convenience overload to allow {@link IsWidget} to be used directly.
 */
public void insert(IsWidget widget, @IsSafeHtml String tabText, boolean asHTML, int beforeIndex) {
 insert(asWidgetOrNull(widget), tabText, asHTML, beforeIndex);
}
origin: net.wetheinter/gwt-user

/**
 * Inserts a widget into the tab panel. If the Widget is already attached to
 * the TabPanel, it will be moved to the requested index.
 *
 * @param widget the widget to be inserted
 * @param tabText the text to be shown on its tab
 * @param beforeIndex the index before which it will be inserted
 */
public void insert(Widget widget, String tabText, int beforeIndex) {
 insert(widget, tabText, false, beforeIndex);
}
origin: com.vaadin.external.gwt/gwt-user

/**
 * Inserts a widget into the tab panel. If the Widget is already attached to
 * the TabPanel, it will be moved to the requested index.
 *
 * @param widget the widget to be inserted
 * @param tabText the text to be shown on its tab
 * @param beforeIndex the index before which it will be inserted
 */
public void insert(Widget widget, String tabText, int beforeIndex) {
 insert(widget, tabText, false, beforeIndex);
}
origin: net.wetheinter/gwt-user

/**
 * Convenience overload to allow {@link IsWidget} to be used directly.
 */
public void insert(IsWidget widget, String tabText, boolean asHTML,
  int beforeIndex) {
 insert(asWidgetOrNull(widget), tabText, asHTML, beforeIndex);
}
origin: net.wetheinter/gwt-user

/**
 * Adds a widget to the tab panel. If the Widget is already attached to the
 * TabPanel, it will be moved to the right-most index.
 *
 * @param w the widget to be added
 * @param tabText the text to be shown on its tab
 */
public void add(Widget w, String tabText) {
 insert(w, tabText, getWidgetCount());
}
origin: com.vaadin.external.gwt/gwt-user

/**
 * Convenience overload to allow {@link IsWidget} to be used directly.
 */
public void insert(IsWidget widget, String tabText, boolean asHTML,
  int beforeIndex) {
 insert(asWidgetOrNull(widget), tabText, asHTML, beforeIndex);
}
origin: com.vaadin.external.gwt/gwt-user

/**
 * Convenience overload to allow {@link IsWidget} to be used directly.
 */
public void insert(IsWidget widget, String tabText, int beforeIndex) {
 insert(asWidgetOrNull(widget), tabText, beforeIndex);
}
origin: net.wetheinter/gwt-user

/**
 * Adds a widget to the tab panel. If the Widget is already attached to the
 * TabPanel, it will be moved to the right-most index.
 *
 * @param w the widget to be added
 * @param tabText the text to be shown on its tab
 * @param asHTML <code>true</code> to treat the specified text as HTML
 */
public void add(Widget w, String tabText, boolean asHTML) {
 insert(w, tabText, asHTML, getWidgetCount());
}
origin: com.vaadin.external.gwt/gwt-user

/**
 * Adds a widget to the tab panel. If the Widget is already attached to the
 * TabPanel, it will be moved to the right-most index.
 *
 * @param w the widget to be added
 * @param tabText the text to be shown on its tab
 */
public void add(Widget w, String tabText) {
 insert(w, tabText, getWidgetCount());
}
origin: net.wetheinter/gwt-user

/**
 * Adds a widget to the tab panel. If the Widget is already attached to the
 * TabPanel, it will be moved to the right-most index.
 *
 * @param w the widget to be added
 * @param tabWidget the widget to be shown in the tab
 */
public void add(Widget w, Widget tabWidget) {
 insert(w, tabWidget, getWidgetCount());
}
origin: net.wetheinter/gwt-user

/**
 * Convenience overload to allow {@link IsWidget} to be used directly.
 */
public void insert(IsWidget widget, String tabText, int beforeIndex) {
 insert(asWidgetOrNull(widget), tabText, beforeIndex);
}
origin: com.vaadin.external.gwt/gwt-user

/**
 * Adds a widget to the tab panel. If the Widget is already attached to the
 * TabPanel, it will be moved to the right-most index.
 *
 * @param w the widget to be added
 * @param tabWidget the widget to be shown in the tab
 */
public void add(Widget w, Widget tabWidget) {
 insert(w, tabWidget, getWidgetCount());
}
origin: net.wetheinter/gwt-user

/**
 * Convenience overload to allow {@link IsWidget} to be used directly.
 */
public void insert(IsWidget widget, IsWidget tabWidget, int beforeIndex) {
 insert(asWidgetOrNull(widget), asWidgetOrNull(tabWidget), beforeIndex);
}
origin: com.vaadin.external.gwt/gwt-user

/**
 * Convenience overload to allow {@link IsWidget} to be used directly.
 */
public void insert(IsWidget widget, IsWidget tabWidget, int beforeIndex) {
 insert(asWidgetOrNull(widget), asWidgetOrNull(tabWidget), beforeIndex);
}
com.google.gwt.user.client.uiTabPanelinsert

Javadoc

Convenience overload to allow IsWidget to be used directly.

Popular methods of TabPanel

  • add
    Adds a widget to the tab panel. If the Widget is already attached to the TabPanel, it will be moved
  • selectTab
    Programmatically selects the specified tab.
  • <init>
    Creates an empty tab panel.
  • getWidgetCount
  • setStyleName
  • addBeforeSelectionHandler
  • addSelectionHandler
  • remove
    Removes the given widget, and its associated tab.
  • addHandler
  • asWidgetOrNull
  • createTabTextWrapper
    Create a SimplePanel that will wrap the contents in a tab. Subclasses can use this method to wrap ta
  • getWidget
  • createTabTextWrapper,
  • getWidget,
  • getWidgetIndex,
  • initWidget,
  • addStyleName,
  • getElement,
  • isAnimationEnabled,
  • setVisible

Popular in Java

  • Reading from database using SQL prepared statement
  • onRequestPermissionsResult (Fragment)
  • getSystemService (Context)
  • setScale (BigDecimal)
  • Permission (java.security)
    Legacy security code; do not use.
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now