1
1
/*
2
2
*
3
- * Copyright (c) 2007, 2021 , Oracle and/or its affiliates. All rights reserved.
3
+ * Copyright (c) 2007, 2023 , Oracle and/or its affiliates. All rights reserved.
4
4
*
5
5
* Redistribution and use in source and binary forms, with or without
6
6
* modification, are permitted provided that the following conditions
@@ -281,6 +281,7 @@ public Dimension getMaximumSize() {
281
281
selectionModeComboBox .addItem (getString ("TableDemo.one_range" ));
282
282
selectionModeComboBox .addItem (getString ("TableDemo.multiple_ranges" ));
283
283
selectionModeComboBox .setSelectedIndex (tableView .getSelectionModel ().getSelectionMode ());
284
+ selectionModeComboBox .getAccessibleContext ().setAccessibleName (getString ("TableDemo.selection_mode" ));
284
285
selectionModeComboBox .addItemListener (new ItemListener () {
285
286
public void itemStateChanged (ItemEvent e ) {
286
287
JComboBox <?> source = (JComboBox <?>)e .getSource ();
@@ -310,6 +311,7 @@ public Dimension getMaximumSize() {
310
311
resizeModeComboBox .addItem (getString ("TableDemo.last_column" ));
311
312
resizeModeComboBox .addItem (getString ("TableDemo.all_columns" ));
312
313
resizeModeComboBox .setSelectedIndex (tableView .getAutoResizeMode ());
314
+ resizeModeComboBox .getAccessibleContext ().setAccessibleName (getString ("TableDemo.autoresize_mode" ));
313
315
resizeModeComboBox .addItemListener (new ItemListener () {
314
316
public void itemStateChanged (ItemEvent e ) {
315
317
JComboBox <?> source = (JComboBox <?>)e .getSource ();
@@ -330,6 +332,9 @@ public void itemStateChanged(ItemEvent e) {
330
332
footerTextField = new JTextField (getString ("TableDemo.footerText" ), 15 );
331
333
fitWidth = new JCheckBox (getString ("TableDemo.fitWidth" ), true );
332
334
printButton = new JButton (getString ("TableDemo.print" ));
335
+
336
+ headerLabel .setLabelFor (headerTextField );
337
+ footerLabel .setLabelFor (footerTextField );
333
338
printButton .addActionListener (new ActionListener () {
334
339
public void actionPerformed (ActionEvent ae ) {
335
340
printTable ();
0 commit comments