Tabnine Logo
ColumnControlButton.createColumnModelListener
Code IndexAdd Tabnine to your IDE (free)

How to use
createColumnModelListener
method
in
org.jdesktop.swingx.table.ColumnControlButton

Best Java code snippets using org.jdesktop.swingx.table.ColumnControlButton.createColumnModelListener (Showing top 5 results out of 315)

origin: org.codehaus.jtstand/jtstand-desktop

/**
 * Returns the listener to table's column model. The listener is 
 * lazily created if necessary. 
 * @return the <code>TableColumnModelListener</code> for use with the 
 *  table's column model, guaranteed to be not <code>null</code>.
 */
protected TableColumnModelListener getColumnModelListener() {
  if (columnModelListener == null) {
    columnModelListener = createColumnModelListener();
  }
  return columnModelListener;
}
 
origin: com.haulmont.thirdparty/swingx-core

/**
 * Returns the listener to table's column model. The listener is 
 * lazily created if necessary. 
 * @return the <code>TableColumnModelListener</code> for use with the 
 *  table's column model, guaranteed to be not <code>null</code>.
 */
protected TableColumnModelListener getColumnModelListener() {
  if (columnModelListener == null) {
    columnModelListener = createColumnModelListener();
  }
  return columnModelListener;
}
 
origin: org.swinglabs.swingx/swingx-all

/**
 * Returns the listener to table's column model. The listener is 
 * lazily created if necessary. 
 * @return the <code>TableColumnModelListener</code> for use with the 
 *  table's column model, guaranteed to be not <code>null</code>.
 */
protected TableColumnModelListener getColumnModelListener() {
  if (columnModelListener == null) {
    columnModelListener = createColumnModelListener();
  }
  return columnModelListener;
}
 
origin: org.swinglabs.swingx/swingx-core

/**
 * Returns the listener to table's column model. The listener is 
 * lazily created if necessary. 
 * @return the <code>TableColumnModelListener</code> for use with the 
 *  table's column model, guaranteed to be not <code>null</code>.
 */
protected TableColumnModelListener getColumnModelListener() {
  if (columnModelListener == null) {
    columnModelListener = createColumnModelListener();
  }
  return columnModelListener;
}
 
origin: org.bidib.jbidib.swinglabs.swingx/swingx-core

/**
 * Returns the listener to table's column model. The listener is 
 * lazily created if necessary. 
 * @return the <code>TableColumnModelListener</code> for use with the 
 *  table's column model, guaranteed to be not <code>null</code>.
 */
protected TableColumnModelListener getColumnModelListener() {
  if (columnModelListener == null) {
    columnModelListener = createColumnModelListener();
  }
  return columnModelListener;
}
 
org.jdesktop.swingx.tableColumnControlButtoncreateColumnModelListener

Javadoc

Creates the listener to columnModel. Subclasses are free to roll their own.

Implementation note: this listener reacts to "real" columnRemoved/-Added by populating the popups content from scratch.

Popular methods of ColumnControlButton

  • populatePopup
    Populates the popup from scratch. If applicable, creates and adds column visibility actions. Always
  • <init>
    Creates a column control button for the table. The button uses the given icon and has no text.
  • createVisibilityActions
    Creates and adds a ColumnVisiblityAction for every column that should be togglable via the column co
  • getAdditionalActions
    creates and returns a list of additional Actions to add to the popup. Here: the actions are looked u
  • togglePopup
    Toggles the popup component's visibility. This method is called by this control's default action. H
  • addAdditionalActionItems
    Adds additional actions to the popup, if additionalActionsVisible is true, does nothing otherwise. H
  • addVisibilityActionItems
    Adds visibility actions into the popup view. Here: delegates the list of actions to the DefaultColum
  • canControl
    Method to check if we can control column visibility POST: if true we can be sure to have an extended
  • clearAll
    removes all components from the popup, making sure to release all columnVisibility actions.
  • clearColumnVisibilityActions
    Releases actions and clears list of actions.
  • createColumnControlPopup
    Factory method to return a ColumnControlPopup. Subclasses can override to hook custom implementation
  • createColumnVisibilityAction
    Creates and returns a ColumnVisibilityAction for the givenTableColumn. The return value might be nul
  • createColumnControlPopup,
  • createColumnVisibilityAction,
  • createControlAction,
  • createTablePropertyChangeListener,
  • getAction,
  • getColumnControlActionKeys,
  • getColumnControlPopup,
  • getColumnModelListener,
  • getColumnVisibilityActions

Popular in Java

  • Reactive rest calls using spring rest template
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • findViewById (Activity)
  • putExtra (Intent)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • 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