congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
ColumnControlButton.getAdditionalActionsVisible
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: org.bidib.jbidib.swinglabs.swingx/swingx-core

/**
 * Sets the additonalActionsVisible property. It controls whether or
 * not additional table actions should be included into the popup. <p>
 * 
 * The default value is <code>true</code>.
 * 
 * @param additionalActionsVisible the additionalActionsVisible to set
 */
public void setAdditionalActionsVisible(boolean additionalActionsVisible) {
  if (additionalActionsVisible == getAdditionalActionsVisible()) return;
  boolean old = getAdditionalActionsVisible();
  this.additionalActionsVisible = additionalActionsVisible;
  populatePopup();
  firePropertyChange("additionalActionsVisible", old, getAdditionalActionsVisible());
}
origin: com.haulmont.thirdparty/swingx-core

/**
 * Sets the additonalActionsVisible property. It controls whether or
 * not additional table actions should be included into the popup. <p>
 * 
 * The default value is <code>true</code>.
 * 
 * @param additionalActionsVisible the additionalActionsVisible to set
 */
public void setAdditionalActionsVisible(boolean additionalActionsVisible) {
  if (additionalActionsVisible == getAdditionalActionsVisible()) return;
  boolean old = getAdditionalActionsVisible();
  this.additionalActionsVisible = additionalActionsVisible;
  populatePopup();
  firePropertyChange("additionalActionsVisible", old, getAdditionalActionsVisible());
}
origin: org.swinglabs.swingx/swingx-core

/**
 * Sets the additonalActionsVisible property. It controls whether or
 * not additional table actions should be included into the popup. <p>
 * 
 * The default value is <code>true</code>.
 * 
 * @param additionalActionsVisible the additionalActionsVisible to set
 */
public void setAdditionalActionsVisible(boolean additionalActionsVisible) {
  if (additionalActionsVisible == getAdditionalActionsVisible()) return;
  boolean old = getAdditionalActionsVisible();
  this.additionalActionsVisible = additionalActionsVisible;
  populatePopup();
  firePropertyChange("additionalActionsVisible", old, getAdditionalActionsVisible());
}
origin: org.swinglabs.swingx/swingx-all

/**
 * Sets the additonalActionsVisible property. It controls whether or
 * not additional table actions should be included into the popup. <p>
 * 
 * The default value is <code>true</code>.
 * 
 * @param additionalActionsVisible the additionalActionsVisible to set
 */
public void setAdditionalActionsVisible(boolean additionalActionsVisible) {
  if (additionalActionsVisible == getAdditionalActionsVisible()) return;
  boolean old = getAdditionalActionsVisible();
  this.additionalActionsVisible = additionalActionsVisible;
  populatePopup();
  firePropertyChange("additionalActionsVisible", old, getAdditionalActionsVisible());
}
origin: org.bidib.jbidib.swinglabs.swingx/swingx-core

/**
 * Adds additional actions to the popup, if additionalActionsVisible is true,
 * does nothing otherwise.<p>
 * 
 * Here: delegates the list of actions as returned by #getAdditionalActions() 
 *   to the DefaultColumnControlPopup. 
 * Does nothing if #getColumnActions() is empty.
 * 
 */
protected void addAdditionalActionItems() {
  if (!getAdditionalActionsVisible()) return;
  getColumnControlPopup().addAdditionalActionItems(
      Collections.unmodifiableList(getAdditionalActions()));
}
origin: org.swinglabs.swingx/swingx-all

/**
 * Adds additional actions to the popup, if additionalActionsVisible is true,
 * does nothing otherwise.<p>
 * 
 * Here: delegates the list of actions as returned by #getAdditionalActions() 
 *   to the DefaultColumnControlPopup. 
 * Does nothing if #getColumnActions() is empty.
 * 
 */
protected void addAdditionalActionItems() {
  if (!getAdditionalActionsVisible()) return;
  getColumnControlPopup().addAdditionalActionItems(
      Collections.unmodifiableList(getAdditionalActions()));
}
origin: com.haulmont.thirdparty/swingx-core

/**
 * Adds additional actions to the popup, if additionalActionsVisible is true,
 * does nothing otherwise.<p>
 * 
 * Here: delegates the list of actions as returned by #getAdditionalActions() 
 *   to the DefaultColumnControlPopup. 
 * Does nothing if #getColumnActions() is empty.
 * 
 */
protected void addAdditionalActionItems() {
  if (!getAdditionalActionsVisible()) return;
  getColumnControlPopup().addAdditionalActionItems(
      Collections.unmodifiableList(getAdditionalActions()));
}
origin: org.swinglabs.swingx/swingx-core

/**
 * Adds additional actions to the popup, if additionalActionsVisible is true,
 * does nothing otherwise.<p>
 * 
 * Here: delegates the list of actions as returned by #getAdditionalActions() 
 *   to the DefaultColumnControlPopup. 
 * Does nothing if #getColumnActions() is empty.
 * 
 */
protected void addAdditionalActionItems() {
  if (!getAdditionalActionsVisible()) return;
  getColumnControlPopup().addAdditionalActionItems(
      Collections.unmodifiableList(getAdditionalActions()));
}
org.jdesktop.swingx.tableColumnControlButtongetAdditionalActionsVisible

Javadoc

Returns the actionsVisible property which controls whether or not additional table Actions should be included into the popup.

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
  • createColumnModelListener
    Creates the listener to columnModel. Subclasses are free to roll their own. Implementation note: th
  • createColumnControlPopup,
  • createColumnModelListener,
  • createColumnVisibilityAction,
  • createControlAction,
  • createTablePropertyChangeListener,
  • getAction,
  • getColumnControlActionKeys,
  • getColumnControlPopup,
  • getColumnModelListener,
  • getColumnVisibilityActions

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getSharedPreferences (Context)
  • getSystemService (Context)
  • getExternalFilesDir (Context)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • 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