Codota Logo
ColumnControlButton.putClientProperty
Code IndexAdd Codota to your IDE (free)

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

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

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
FileOutputStream f =
  • Codota IconFile file;new FileOutputStream(file)
  • Codota IconString name;new FileOutputStream(name)
  • Codota IconFile file;new FileOutputStream(file, true)
  • Smart code suggestions by Codota
}
origin: org.codehaus.jtstand/jtstand-desktop

/**
 * Initialize the column control button's gui
 */
private void init() {
  setFocusPainted(false);
  setFocusable(false);
  // this is a trick to get hold of the client prop which
  // prevents closing of the popup
  JComboBox box = new JComboBox();
  Object preventHide = box.getClientProperty("doNotCancelPopup");
  putClientProperty("doNotCancelPopup", preventHide);
}
origin: com.haulmont.thirdparty/swingx-core

/**
 * Initialize the column control button's gui
 */
private void init() {
  setFocusPainted(false);
  setFocusable(false);
  // this is a trick to get hold of the client prop which
  // prevents closing of the popup
  JComboBox box = new JComboBox();
  Object preventHide = box.getClientProperty("doNotCancelPopup");
  putClientProperty("doNotCancelPopup", preventHide);
  additionalActionsVisible = true;
}
origin: org.swinglabs.swingx/swingx-all

/**
 * Initialize the column control button's gui
 */
private void init() {
  setFocusPainted(false);
  setFocusable(false);
  // this is a trick to get hold of the client prop which
  // prevents closing of the popup
  JComboBox box = new JComboBox();
  Object preventHide = box.getClientProperty("doNotCancelPopup");
  putClientProperty("doNotCancelPopup", preventHide);
  additionalActionsVisible = true;
}
origin: org.swinglabs.swingx/swingx-core

/**
 * Initialize the column control button's gui
 */
private void init() {
  setFocusPainted(false);
  setFocusable(false);
  // this is a trick to get hold of the client prop which
  // prevents closing of the popup
  JComboBox box = new JComboBox();
  Object preventHide = box.getClientProperty("doNotCancelPopup");
  putClientProperty("doNotCancelPopup", preventHide);
  additionalActionsVisible = true;
}
origin: org.bidib.jbidib.swinglabs.swingx/swingx-core

/**
 * Initialize the column control button's gui
 */
private void init() {
  setFocusPainted(false);
  setFocusable(false);
  // this is a trick to get hold of the client prop which
  // prevents closing of the popup
  JComboBox box = new JComboBox();
  Object preventHide = box.getClientProperty("doNotCancelPopup");
  putClientProperty("doNotCancelPopup", preventHide);
  additionalActionsVisible = true;
}
org.jdesktop.swingx.tableColumnControlButtonputClientProperty

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

  • Reading from database using SQL prepared statement
  • requestLocationUpdates (LocationManager)
  • putExtra (Intent)
  • setRequestProperty (URLConnection)
    Sets the general request property. If a property with the key already exists, overwrite its value wi
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • JButton (javax.swing)
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now