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

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

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

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

  @Override
  public void propertyChange(PropertyChangeEvent evt) {
    if ("columnModel".equals(evt.getPropertyName())) {
      updateFromColumnModelChange((TableColumnModel) evt
          .getOldValue());
    } else if ("enabled".equals(evt.getPropertyName())) {
      updateFromTableEnabledChanged();
    }
  }
};
origin: org.codehaus.jtstand/jtstand-desktop

  public void propertyChange(PropertyChangeEvent evt) {
    if ("columnModel".equals(evt.getPropertyName())) {
      updateFromColumnModelChange((TableColumnModel) evt
          .getOldValue());
    } else if ("enabled".equals(evt.getPropertyName())) {
      updateFromTableEnabledChanged();
    }
  }
};
origin: org.swinglabs.swingx/swingx-core

  @Override
  public void propertyChange(PropertyChangeEvent evt) {
    if ("columnModel".equals(evt.getPropertyName())) {
      updateFromColumnModelChange((TableColumnModel) evt
          .getOldValue());
    } else if ("enabled".equals(evt.getPropertyName())) {
      updateFromTableEnabledChanged();
    }
  }
};
origin: com.haulmont.thirdparty/swingx-core

  @Override
  public void propertyChange(PropertyChangeEvent evt) {
    if ("columnModel".equals(evt.getPropertyName())) {
      updateFromColumnModelChange((TableColumnModel) evt
          .getOldValue());
    } else if ("enabled".equals(evt.getPropertyName())) {
      updateFromTableEnabledChanged();
    }
  }
};
origin: org.swinglabs.swingx/swingx-all

  @Override
  public void propertyChange(PropertyChangeEvent evt) {
    if ("columnModel".equals(evt.getPropertyName())) {
      updateFromColumnModelChange((TableColumnModel) evt
          .getOldValue());
    } else if ("enabled".equals(evt.getPropertyName())) {
      updateFromTableEnabledChanged();
    }
  }
};
origin: org.codehaus.jtstand/jtstand-desktop

private void installTable(JXTable table) {
  this.table = table;
  table.addPropertyChangeListener(getTablePropertyChangeListener());
  updateFromColumnModelChange(null);
  updateFromTableEnabledChanged();
}
origin: com.haulmont.thirdparty/swingx-core

private void installTable(JXTable table) {
  this.table = table;
  table.addPropertyChangeListener(getTablePropertyChangeListener());
  updateFromColumnModelChange(null);
  updateFromTableEnabledChanged();
}
origin: org.swinglabs.swingx/swingx-core

private void installTable(JXTable table) {
  this.table = table;
  table.addPropertyChangeListener(getTablePropertyChangeListener());
  updateFromColumnModelChange(null);
  updateFromTableEnabledChanged();
}
origin: org.swinglabs.swingx/swingx-all

private void installTable(JXTable table) {
  this.table = table;
  table.addPropertyChangeListener(getTablePropertyChangeListener());
  updateFromColumnModelChange(null);
  updateFromTableEnabledChanged();
}
origin: org.bidib.jbidib.swinglabs.swingx/swingx-core

private void installTable(JXTable table) {
  this.table = table;
  table.addPropertyChangeListener(getTablePropertyChangeListener());
  updateFromColumnModelChange(null);
  updateFromTableEnabledChanged();
}
org.jdesktop.swingx.tableColumnControlButtonupdateFromTableEnabledChanged

Javadoc

Synchs this button's enabled with table's enabled.

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

  • Creating JSON documents from java classes using gson
  • findViewById (Activity)
  • getSharedPreferences (Context)
  • onCreateOptionsMenu (Activity)
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • 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
  • CodeWhisperer 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