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

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

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

origin: sing-group/GC4S

protected void createVisibilityActions() {
  if(showVisibilityActions == true){
    super.createVisibilityActions();
  }
}
origin: com.haulmont.thirdparty/swingx-core

/**
 * Populates the popup from scratch.
 * 
 * If applicable, creates and adds column visibility actions. Always adds
 * additional actions.
 */
protected void populatePopup() {
  clearAll();
  if (canControl()) {
    createVisibilityActions();
    addVisibilityActionItems();
  }
  addAdditionalActionItems();
}
origin: org.swinglabs.swingx/swingx-core

/**
 * Populates the popup from scratch.
 * 
 * If applicable, creates and adds column visibility actions. Always adds
 * additional actions.
 */
protected void populatePopup() {
  clearAll();
  if (canControl()) {
    createVisibilityActions();
    addVisibilityActionItems();
  }
  addAdditionalActionItems();
}
origin: org.swinglabs.swingx/swingx-all

/**
 * Populates the popup from scratch.
 * 
 * If applicable, creates and adds column visibility actions. Always adds
 * additional actions.
 */
protected void populatePopup() {
  clearAll();
  if (canControl()) {
    createVisibilityActions();
    addVisibilityActionItems();
  }
  addAdditionalActionItems();
}
origin: org.bidib.jbidib.swinglabs.swingx/swingx-core

/**
 * Populates the popup from scratch.
 * 
 * If applicable, creates and adds column visibility actions. Always adds
 * additional actions.
 */
protected void populatePopup() {
  clearAll();
  if (canControl()) {
    createVisibilityActions();
    addVisibilityActionItems();
  }
  addAdditionalActionItems();
}
origin: org.codehaus.jtstand/jtstand-desktop

/**
 * Populates the popup from scratch.
 * 
 * If applicable, creates and adds column visibility actions. Always adds
 * additional actions.
 */
protected void populatePopup() {
  clearAll();
  if (canControl()) {
    createVisibilityActions();
    addVisibilityActionItems();
  }
  addAdditionalActionItems();
}
org.jdesktop.swingx.tableColumnControlButtoncreateVisibilityActions

Javadoc

Creates and adds a ColumnVisiblityAction for every column that should be togglable via the column control.

Here: all table columns contained in the TableColumnModel - visible and invisible columns - to createColumnVisibilityAction and adds all not null return values.

PRE: canControl()

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.
  • 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
  • createColumnModelListener
    Creates the listener to columnModel. Subclasses are free to roll their own. Implementation note: th
  • createColumnVisibilityAction
    Creates and returns a ColumnVisibilityAction for the givenTableColumn. The return value might be nul
  • createColumnModelListener,
  • createColumnVisibilityAction,
  • createControlAction,
  • createTablePropertyChangeListener,
  • getAction,
  • getColumnControlActionKeys,
  • getColumnControlPopup,
  • getColumnModelListener,
  • getColumnVisibilityActions

Popular in Java

  • Running tasks concurrently on multiple threads
  • scheduleAtFixedRate (Timer)
  • putExtra (Intent)
  • setContentView (Activity)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • JPanel (javax.swing)
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Github Copilot alternatives
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