Tabnine Logo
JCheckBox
Code IndexAdd Tabnine to your IDE (free)

How to use
JCheckBox
in
javax.swing

Best Java code snippets using javax.swing.JCheckBox (Showing top 20 results out of 7,713)

Refine searchRefine arrow

  • JPanel
  • JTextField
  • JLabel
  • JButton
  • JComboBox
  • Container
origin: skylot/jadx

private JCheckBox makeOptionsCheckBox(String name, final SearchOptions opt) {
  final JCheckBox chBox = new JCheckBox(name);
  chBox.setAlignmentX(LEFT_ALIGNMENT);
  chBox.setSelected(options.contains(opt));
  chBox.addItemListener(e -> {
    if (chBox.isSelected()) {
      options.add(opt);
    } else {
      options.remove(opt);
    }
    searchEmitter.emitSearch();
  });
  return chBox;
}
origin: libgdx/libgdx

  JPanel panel = new JPanel();
  panel.add(new JLabel("Global"), new GridBagConstraints(0, 0, 1, 1, 0, 0, GridBagConstraints.WEST, GridBagConstraints.NONE,
    new Insets(0, 0, 0, 0), 0, 0));
  panel.add(isGlobalCheckBox = new JCheckBox(), new GridBagConstraints(1, 0, 1, 1, 0, 0, 
    GridBagConstraints.WEST, GridBagConstraints.NONE,
    new Insets(0, 0, 0, 0), 0, 0));
isGlobalCheckBox.addActionListener(new ActionListener() {
  @Override
  public void actionPerformed (ActionEvent e) {
origin: zzz40500/GsonFormat

  @Override
  public void actionPerformed(ActionEvent actionEvent) {
    annotationFT.setText("@{filed}");
    annotationFT.setEnabled(otherRB.isSelected());
    objectFromDataCB.setEnabled(false);
    objectFromData1CB.setEnabled(false);
    arrayFromDataCB.setEnabled(false);
    arrayFromData1CB.setEnabled(false);
    objectFromDataCB.setSelected(false);
    objectFromData1CB.setSelected(false);
    arrayFromDataCB.setSelected(false);
    arrayFromData1CB.setSelected(false);
    objectButton.setEnabled(false);
    object1Button.setEnabled(false);
    arrayButton.setEnabled(false);
    array1Button.setEnabled(false);
  }
});
origin: libgdx/libgdx

protected static void setValue(JCheckBox checkBox, boolean isSelected){
  ActionListener[] listeners = checkBox.getActionListeners();
  ActionListener listener = null;
  if(listeners != null && listeners.length >0){
    listener = listeners[0];
    checkBox.removeActionListener(listener);
  }
  checkBox.setSelected(isSelected);
  if(listener != null) checkBox.addActionListener(listener);
}

origin: libgdx/libgdx

void setEdgesVisible (boolean visible) {
  edgesCheckbox.setVisible(visible);
  edgesLabel.setVisible(visible);
  visible = visible && edgesCheckbox.isSelected();
  sideCombo.setVisible(visible);
  sideLabel.setVisible(visible);
}
origin: libgdx/libgdx

public void showDialog () {
  JCheckBox checkBox = new JCheckBox();
  checkBox.setSelected(currentValue);
  if (showValueDialog(checkBox, description)) value = String.valueOf(checkBox.isSelected());
}
origin: marytts/marytts

jLabel1 = new javax.swing.JLabel();
tfInputDir = new javax.swing.JTextField();
bBrowseInputDir = new javax.swing.JButton();
bBrowseOutputDir = new javax.swing.JButton();
tfOutputDir = new javax.swing.JTextField();
jLabel2 = new javax.swing.JLabel();
jPanel1 = new javax.swing.JPanel();
cbStereoMono = new javax.swing.JCheckBox();
jLabel3 = new javax.swing.JLabel();
cbDownsample = new javax.swing.JCheckBox();
comboSampleRate = new javax.swing.JComboBox();
cbPowerNormalise = new javax.swing.JCheckBox();
cbBestOnly = new javax.swing.JCheckBox();
cbHighPassFilter = new javax.swing.JCheckBox();
cbGlobalAmplitude = new javax.swing.JCheckBox();
jLabel5 = new javax.swing.JLabel();
comboMaxAmplitude = new javax.swing.JComboBox();
jLabel6 = new javax.swing.JLabel();
tfSoxPath = new javax.swing.JTextField();
bBrowseSoxPath = new javax.swing.JButton();
cbTrimSilences = new javax.swing.JCheckBox();
jPanel2 = new javax.swing.JPanel();
rbLeft = new javax.swing.JRadioButton();
rbRight = new javax.swing.JRadioButton();
cbStereoMono.setText("Stereo to Mono conversion");
cbStereoMono.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
cbStereoMono.setMargin(new java.awt.Insets(0, 0, 0, 0));
gridBagConstraints = new java.awt.GridBagConstraints();
origin: libgdx/libgdx

JPanel fontPanel = new JPanel();
  fontFileText = new JTextField();
  fontPanel.add(new JLabel("Size:"), new GridBagConstraints(0, 3, 1, 1, 0.0, 0.0, GridBagConstraints.EAST,
    GridBagConstraints.NONE, new Insets(0, 0, 5, 5), 0, 0));
    GridBagConstraints.HORIZONTAL, new Insets(0, 0, 0, 5), 0, 0));
    boldCheckBox = new JCheckBox("Bold");
    italicCheckBox = new JCheckBox("Italic");
    GridBagConstraints.NONE, new Insets(0, 0, 0, 5), 0, 0));
    monoCheckBox = new JCheckBox("Mono");
  browseButton = new JButton("...");
  browseButton.setMargin(new Insets(0, 0, 0, 0));
  sampleNeheButton = new JButton();
    glyphPageWidthCombo = new JComboBox(new DefaultComboBoxModel(new Integer[] {new Integer(32), new Integer(64),
    glyphPageWidthCombo.setSelectedIndex(4);
    glyphPageHeightCombo = new JComboBox(new DefaultComboBoxModel(new Integer[] {new Integer(32), new Integer(64),
origin: stanfordnlp/CoreNLP

final JPanel prefPanel = new JPanel();
prefPanel.setLayout(new GridBagLayout());
JPanel displayOptions = new JPanel();
JLabel historyLabel = new JLabel("Recent matches length: ");
final JTextField historySizeField =
 new JTextField(Integer.toString(Preferences.getHistorySize()));
final JComboBox fontPicker = new JComboBox(GraphicsEnvironment.getLocalGraphicsEnvironment().getAvailableFontFamilyNames());
fontPicker.setSelectedItem(Preferences.getFont());
 new JTextField(Integer.toString(Preferences.getFontSize()));
final JComboBox headfinderPicker = new JComboBox(new String[] {"ArabicHeadFinder", "BikelChineseHeadFinder", "ChineseHeadFinder", "ChineseSemanticHeadFinder", "CollinsHeadFinder", "DybroFrenchHeadFinder", "LeftHeadFinder", "ModCollinsHeadFinder", "NegraHeadFinder", "SemanticHeadFinder", "SunJurafskyChineseHeadFinder", "TueBaDZHeadFinder", "UniversalSemanticHeadFinder"}); //
final JCheckBox tsurgeonCheck = new JCheckBox("Enable Tsurgeon");
tsurgeonCheck.setSelected(Preferences.getEnableTsurgeon());
final JCheckBox matchPortion = new JCheckBox("Show only matched portions of tree");
matchPortion.setSelected(Preferences.getMatchPortionOnly());
JButton okay = new JButton("Okay");
JButton cancel = new JButton("Cancel");
origin: marytts/marytts

jPanel_SpeakerView = new javax.swing.JPanel();
jTextPane_PromptDisplay = new javax.swing.JTextPane();
jTextPane_nextSentence = new javax.swing.JTextPane();
jLabel_SessionStatus = new javax.swing.JLabel();
jPanel_AdminControls = new javax.swing.JPanel();
jScrollPane_PromptSet = new javax.swing.JScrollPane();
jCheckBox_PlaySynthesis = new javax.swing.JCheckBox();
jCheckBox_PlayBackRec = new javax.swing.JCheckBox();
jCheckBox_ContinueWithNext = new javax.swing.JCheckBox();
jButton_Record = new javax.swing.JButton();
jButton_Play = new javax.swing.JButton();
jSeparator_MessageBar = new javax.swing.JSeparator();
jLabel_MessageBar = new javax.swing.JLabel();
jCheckBox_PlayClosingBeep = new javax.swing.JCheckBox();
jLabel_MessageBarIcon = new javax.swing.JLabel();
jButton_Display = new javax.swing.JButton();
jMenuBar_AdminWindow = new javax.swing.JMenuBar();
jMenu_File = new javax.swing.JMenu();
jCheckBox_PlaySynthesis.setText("Play synthesized prompt");
jCheckBox_PlaySynthesis.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
jCheckBox_PlaySynthesis.setMargin(new java.awt.Insets(0, 0, 0, 0));
jCheckBox_PlayBackRec.setText("Play back after recording");
jCheckBox_PlayBackRec.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
jCheckBox_PlayBackRec.setMargin(new java.awt.Insets(0, 0, 0, 0));
jCheckBox_ContinueWithNext.setSelected(true);
jCheckBox_ContinueWithNext.setText("Continue with next prompt");
origin: marytts/marytts

jPanel_DisplayOptions = new javax.swing.JPanel();
jCheckBox_SystemLookAndFeel = new javax.swing.JCheckBox();
jCheckBox_ShowTestOutput = new javax.swing.JCheckBox();
jCheckBox_ShowTranscription = new javax.swing.JCheckBox();
jCheckBox_ShowPromptCount = new javax.swing.JCheckBox();
jCheckBox_RedAlertMode = new javax.swing.JCheckBox();
jCheckBox_SystemLookAndFeel.setBackground(javax.swing.UIManager.getDefaults().getColor("TabbedPane.highlight"));
jCheckBox_SystemLookAndFeel.setText("Use system look and feel (requires tool restart)");
jCheckBox_SystemLookAndFeel.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
jCheckBox_SystemLookAndFeel.setMargin(new java.awt.Insets(0, 0, 0, 0));
jCheckBox_SystemLookAndFeel.addActionListener(new java.awt.event.ActionListener() {
  public void actionPerformed(java.awt.event.ActionEvent evt) {
    jCheckBox_SystemLookAndFeelActionPerformed(evt);
jCheckBox_ShowTestOutput.setBackground(javax.swing.UIManager.getDefaults().getColor("TabbedPane.highlight"));
jCheckBox_ShowTestOutput.setText("Display test output in console");
jCheckBox_ShowTestOutput.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
jCheckBox_ShowTestOutput.setMargin(new java.awt.Insets(0, 0, 0, 0));
jCheckBox_ShowTestOutput.addActionListener(new java.awt.event.ActionListener() {
  public void actionPerformed(java.awt.event.ActionEvent evt) {
    jCheckBox_ShowTestOutputActionPerformed(evt);
jCheckBox_ShowTranscription.setBackground(javax.swing.UIManager.getDefaults().getColor("TabbedPane.highlight"));
jCheckBox_ShowTranscription.setText("Show transcription");
jCheckBox_ShowTranscription.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
jCheckBox_ShowTranscription.setMargin(new java.awt.Insets(0, 0, 0, 0));
jCheckBox_ShowTranscription.addActionListener(new java.awt.event.ActionListener() {
  public void actionPerformed(java.awt.event.ActionEvent evt) {
origin: jersey/jersey

twitterCheckbox = new javax.swing.JCheckBox();
twitterColorLabel = new javax.swing.JLabel();
testColorLabel = new javax.swing.JLabel();
testCheckbox = new javax.swing.JCheckBox();
newKeywordField.addActionListener(new java.awt.event.ActionListener() {
  public void actionPerformed(java.awt.event.ActionEvent evt) {
    onKeywordEntered(evt);
addButton.setText("Add");
twitterCheckbox.setSelected(true);
twitterCheckbox.setText("Twitter aggregator");
testCheckbox.setText("Test Aggregator");
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
    layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
origin: opentripplanner/OpenTripPlanner

private void initRoutingSubpanel() {
  JPanel routingPanel = new JPanel();
  routingPanel.setLayout(new GridLayout(0, 2));
  leftPanel.add(routingPanel, BorderLayout.NORTH);
  JButton setSourceVertexButton = new JButton("set source");
  setSourceVertexButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
      Object selected = nearbyVertices.getSelectedValue();
  routingPanel.add(setSourceVertexButton);
  sourceVertex = new JTextField();
  routingPanel.add(sourceVertex);
  JButton setSinkVertexButton = new JButton("set sink");
  setSinkVertexButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
  routingPanel.add(setSinkVertexButton);
  sinkVertex = new JTextField();
  routingPanel.add(sinkVertex);
  searchTimeElapsedLabel = new JLabel("search time elapsed:");
  routingPanel.add(searchTimeElapsedLabel);
  dontUseGraphicalCallbackCheckBox = new JCheckBox("no graphics");
  routingPanel.add(dontUseGraphicalCallbackCheckBox);
origin: libgdx/libgdx

private void initializeComponents (String chartTitle) {
  JPanel contentPanel = getContentPanel();
    formPanel = new JPanel(new GridBagLayout());
    contentPanel.add(formPanel, new GridBagConstraints(5, 5, 1, 1, 0, 0, GridBagConstraints.EAST, GridBagConstraints.NONE,
      new Insets(0, 0, 0, 6), 0, 0));
      JLabel label = new JLabel("High:");
      formPanel.add(label, new GridBagConstraints(2, 1, 1, 1, 0, 0, GridBagConstraints.EAST, GridBagConstraints.NONE,
        new Insets(0, 0, 0, 6), 0, 0));
      JLabel label = new JLabel("Low:");
      formPanel.add(label, new GridBagConstraints(2, 2, 1, 1, 0, 0, GridBagConstraints.EAST, GridBagConstraints.NONE,
        new Insets(0, 0, 0, 6), 0, 0));
      lowRangeButton = new JButton("<");
      lowRangeButton.setBorder(BorderFactory.createEmptyBorder(6, 6, 6, 6));
      formPanel.add(lowRangeButton, new GridBagConstraints(5, 2, 1, 1, 0.0, 0, GridBagConstraints.WEST,
    relativeCheckBox = new JCheckBox("Relative");
    contentPanel.add(relativeCheckBox, new GridBagConstraints(7, 5, 1, 1, 0, 0, GridBagConstraints.NORTHWEST,
      GridBagConstraints.NONE, new Insets(0, 6, 0, 0), 0, 0));
  relativeCheckBox.addActionListener(new ActionListener() {
    public void actionPerformed (ActionEvent event) {
      ScaledNumericPanel.this.value.setRelative(relativeCheckBox.isSelected());
origin: marytts/marytts

java.awt.GridBagConstraints gridBagConstraints;
cbSelected = new javax.swing.JCheckBox();
bDetails = new javax.swing.JButton();
lStatus = new javax.swing.JLabel();
cbSelected.setText(desc.getName());
cbSelected.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
cbSelected.setMargin(new java.awt.Insets(0, 0, 0, 0));
cbSelected.setPreferredSize(new java.awt.Dimension(200, 18));
cbSelected.addItemListener(new java.awt.event.ItemListener() {
  public void itemStateChanged(java.awt.event.ItemEvent evt) {
    cbSelectedItemStateChanged(evt);
cbSelected.addFocusListener(new java.awt.event.FocusAdapter() {
  public void focusGained(java.awt.event.FocusEvent evt) {
    formFocusGained(evt);
add(cbSelected, gridBagConstraints);
bDetails.setText("Details");
bDetails.addActionListener(new java.awt.event.ActionListener() {
  public void actionPerformed(java.awt.event.ActionEvent evt) {
    bDetailsActionPerformed(evt);
add(bDetails, gridBagConstraints);
origin: libgdx/libgdx

@Override
protected void initializeComponents () {
  super.initializeComponents();
  JButton atlasButton = new JButton("Open Atlas");
  JButton textureButton = new JButton("Open Texture");
  JButton defaultTextureButton = new JButton("Default Texture");
  final JCheckBox genMipMaps = new JCheckBox("Generate MipMaps");
  final JComboBox minFilterBox = new JComboBox(new DefaultComboBoxModel(TextureFilter.values()));
  final JComboBox magFilterBox = new JComboBox(new DefaultComboBoxModel(TextureFilter.values()));
  minFilterBox.setSelectedItem(editor.getTexture().getMinFilter());
  magFilterBox.setSelectedItem(editor.getTexture().getMagFilter());
  contentPanel.add(new JLabel("Min. Filter"), new GridBagConstraints(0, 0, 1, 1, 0, 0, GridBagConstraints.WEST, GridBagConstraints.NONE,
    new Insets(6, 0, 0, 0), 0, 0));
  contentPanel.add(minFilterBox, new GridBagConstraints(1, 0, 1, 1, 1, 0, GridBagConstraints.WEST, GridBagConstraints.NONE,
    new Insets(6, 0, 0, 0), 0, 0));
  contentPanel.add(new JLabel("Mag. Filter"), new GridBagConstraints(0, 1, 1, 1, 0, 0, GridBagConstraints.WEST, GridBagConstraints.NONE,
    new Insets(6, 0, 0, 0), 0, 0));
  contentPanel.add(magFilterBox, new GridBagConstraints(1, 1, 1, 1, 1, 0, GridBagConstraints.WEST, GridBagConstraints.NONE,
origin: jMonkeyEngine/jmonkeyengine

private JPanel createSearchPanel(final FilteredJList classes) {
  JPanel search = new JPanel();
  search.setLayout(new BorderLayout());
  search.add(new JLabel("Choose a Demo to start:      Find: "),
      BorderLayout.WEST);
  final javax.swing.JTextField jtf = new javax.swing.JTextField();
  jtf.getDocument().addDocumentListener(new DocumentListener() {
    public void removeUpdate(DocumentEvent e) {
      classes.setFilter(jtf.getText());
  jtf.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
      selectedClass = classes.getSelectedValuesList();
  final JCheckBox showSettingCheck = new JCheckBox("Show Setting");
  showSettingCheck.setSelected(true);
  showSettingCheck.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
      showSetting = showSettingCheck.isSelected();
origin: bonnyfone/vectalign

private void init(){
  setTitle("Export options");
  setResizable(false);
  panelInput = new JPanel();
  panelExport = new JPanel();
  labelDir = new JLabel("Output dir: ");
  labelPrefix = new JLabel("Files prefix");
  labelDuration = new JLabel("Morph duration (ms):");
  labelVectorCompat = new JLabel("wnafee/vector-compat");
  txtDir = new JTextField(lastOuputDir != null ? lastOuputDir.getAbsolutePath() : "");
  txtDuration = new JTextField(lastDuration);
  txtPrefix = new JTextField(lastPrefix);
  checkVectorCompat = new JCheckBox("include vector-compat attributes", lastSupportVectorCompat);
  btnExport = new JButton("Export", new ImageIcon((new ImageIcon(this.getClass().getResource("/export-icon.png")).getImage().getScaledInstance(20, 20, java.awt.Image.SCALE_SMOOTH))));
  btnOpenDir = new JButton("...");
  panelInput.setLayout(new GridBagLayout());
origin: libgdx/libgdx

private void initializeComponents (String chartTitle, boolean hasIndependent) {
  JPanel contentPanel = getContentPanel();
    formPanel = new JPanel(new GridBagLayout());
    contentPanel.add(formPanel, new GridBagConstraints(5, 5, 1, 1, 0, 0, GridBagConstraints.EAST, GridBagConstraints.NONE,
      new Insets(0, 0, 0, 6), 0, 0));
      JLabel label = new JLabel("High:");
      formPanel.add(label, new GridBagConstraints(2, 1, 1, 1, 0, 0, GridBagConstraints.EAST, GridBagConstraints.NONE,
        new Insets(0, 0, 0, 6), 0, 0));
      JLabel label = new JLabel("Low:");
      formPanel.add(label, new GridBagConstraints(2, 2, 1, 1, 0, 0, GridBagConstraints.EAST, GridBagConstraints.NONE,
        new Insets(0, 0, 0, 6), 0, 0));
      lowRangeButton = new JButton("<");
      lowRangeButton.setBorder(BorderFactory.createEmptyBorder(6, 6, 6, 6));
      formPanel.add(lowRangeButton, new GridBagConstraints(5, 2, 1, 1, 0.0, 0, GridBagConstraints.WEST,
    relativeCheckBox = new JCheckBox("Relative");
    contentPanel.add(relativeCheckBox, new GridBagConstraints(8, 5, 1, 1, 1, 0, GridBagConstraints.NORTHWEST,
      GridBagConstraints.NONE, new Insets(0, 6, 0, 0), 0, 0));
      independentCheckbox = new JCheckBox("Independent");
      contentPanel.add(independentCheckbox, new GridBagConstraints(8, 5, 1, 1, 1, 0, GridBagConstraints.WEST,
          GridBagConstraints.NONE, new Insets(0, 6, 0, 0), 0, 0));
origin: libgdx/libgdx

private void initializeComponents () {
  JPanel contentPanel = getContentPanel();
    JLabel label = new JLabel("Shape:");
    contentPanel.add(label, new GridBagConstraints(0, 1, 1, 1, 0, 0, GridBagConstraints.EAST, GridBagConstraints.NONE,
      new Insets(0, 0, 0, 6), 0, 0));
    shapeCombo = new JComboBox();
    shapeCombo.setModel(new DefaultComboBoxModel(SpawnShape.values()));
    contentPanel.add(shapeCombo, new GridBagConstraints(1, 1, 1, 1, 0, 0, GridBagConstraints.WEST, GridBagConstraints.NONE,
      new Insets(0, 0, 0, 0), 0, 0));
    edgesLabel = new JLabel("Edges:");
    contentPanel.add(edgesLabel, new GridBagConstraints(2, 1, 1, 1, 0, 0, GridBagConstraints.EAST, GridBagConstraints.NONE,
      new Insets(0, 12, 0, 6), 0, 0));
    edgesCheckbox = new JCheckBox();
    contentPanel.add(edgesCheckbox, new GridBagConstraints(3, 1, 1, 1, 0, 0, GridBagConstraints.WEST,
      GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0));
    sideLabel = new JLabel("Side:");
    contentPanel.add(sideLabel, new GridBagConstraints(4, 1, 1, 1, 0, 0, GridBagConstraints.EAST, GridBagConstraints.NONE,
      new Insets(0, 12, 0, 6), 0, 0));
    sideCombo = new JComboBox();
    sideCombo.setModel(new DefaultComboBoxModel(SpawnEllipseSide.values()));
    contentPanel.add(sideCombo, new GridBagConstraints(5, 1, 1, 1, 0, 0, GridBagConstraints.WEST, GridBagConstraints.NONE,
javax.swingJCheckBox

Most used methods

  • isSelected
  • <init>
  • setSelected
  • addActionListener
  • setEnabled
  • setText
  • addItemListener
  • setToolTipText
  • addChangeListener
  • setVisible
  • setBorder
  • setMargin
  • setBorder,
  • setMargin,
  • setOpaque,
  • getText,
  • setBackground,
  • setFont,
  • getAccessibleContext,
  • isEnabled,
  • setHorizontalAlignment,
  • setMnemonic

Popular in Java

  • Making http post requests using okhttp
  • getSupportFragmentManager (FragmentActivity)
  • getSystemService (Context)
  • setRequestProperty (URLConnection)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • Best plugins for Eclipse
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