Searched refs:table (Results 1 - 25 of 481) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/table/
H A Dpackage-info.java47 * <li><a href="http://docs.oracle.com/javase/tutorial/uiswing/components/table.html"
55 package javax.swing.table;
H A DTableCellRenderer.java26 package javax.swing.table;
45 * the cell representing the table's current DnD drop location if
47 * the DnD drop location, it should query the table directly to
50 * JTable.DropLocation dropLocation = table.getDropLocation();
66 * or not the table is being printed, check the return value from
69 * @param table the <code>JTable</code> that is asking the
94 Component getTableCellRendererComponent(JTable table, Object value, argument
H A DTableStringConverter.java25 package javax.swing.table;
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/layout/
H A DNonContextualGlyphSubst.h50 LookupTable table; member in struct:NonContextualGlyphSubstitutionHeader
55 LookupTable table; member in struct:NonContextualGlyphSubstitutionHeader2
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/binary/
H A DPatternInterner.java51 private Pattern[] table; field in class:PatternInterner
56 table = null;
62 table = parent.table;
63 if (table != null)
64 table = (Pattern[]) table.clone();
73 if (table == null) {
74 table = new Pattern[INIT_SIZE];
78 for (h = firstIndex(p); table[
[all...]
/openjdk10/jdk/test/sun/text/IntHashtable/
H A DBug4705389.java36 IntHashtable table = new IntHashtable();
38 table.put(i, 0);
39 table.remove(i);
41 table.put(132, 0);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/table/
H A DSortHeaderMouseAdapter.java25 package sun.jvm.hotspot.ui.table;
32 import javax.swing.table.TableColumnModel;
43 private JTable table; field in class:SortHeaderMouseAdapter
45 public SortHeaderMouseAdapter(JTable table, SortableTableModel model) { argument
47 this.table = table;
53 CommonUI.setWaitCursor(SwingUtilities.getRoot(table));
55 TableColumnModel columnModel = table.getColumnModel();
57 int column = table.convertColumnIndexToModel(viewColumn);
66 CommonUI.setDefaultCursor(SwingUtilities.getRoot(table));
[all...]
H A DLongCellRenderer.java25 package sun.jvm.hotspot.ui.table;
30 import javax.swing.table.*;
40 public Component getTableCellRendererComponent(JTable table, Object value, argument
45 textField.setFont(table.getFont());
49 textField.setForeground(isSelected ? table.getSelectionForeground() :
50 table.getForeground());
51 textField.setBackground(isSelected ? table.getSelectionBackground() :
52 table.getBackground());
/openjdk10/jdk/src/jdk.jconsole/share/classes/sun/tools/jconsole/inspector/
H A DXPlotter.java33 JTable table; field in class:XPlotter
34 public XPlotter(JTable table, argument
37 this.table = table;
42 table.repaint();
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifLookAndFeel.java91 * Load the SystemColors into the defaults table. The keys
93 * the public fields in SystemColor. If the table is being
98 protected void initSystemColorDefaults(UIDefaults table) argument
130 loadSystemColors(table, defaultSystemColors, false);
134 protected void initClassDefaults(UIDefaults table) argument
136 super.initClassDefaults(table);
174 table.putDefaults(uiDefaults);
179 * Initialize the defaults table with the name of the ResourceBundle
182 private void initResourceBundle(UIDefaults table) { argument
184 .addInternalBundle(table,
189 initComponentDefaults(UIDefaults table) argument
[all...]
/openjdk10/jdk/src/demo/share/jfc/Metalworks/
H A DBigContrastMetalTheme.java103 public void addCustomEntriesToTable(UIDefaults table) { argument
104 super.addCustomEntriesToTable(table);
107 table.put("InternalFrame.closeIcon", MetalIconFactory.
109 table.put("InternalFrame.maximizeIcon", MetalIconFactory.
111 table.put("InternalFrame.iconifyIcon", MetalIconFactory.
113 table.put("InternalFrame.minimizeIcon", MetalIconFactory.
121 table.put("ToolTip.border", blackLineBorder);
122 table.put("TitledBorder.border", blackLineBorder);
125 table.put("TextField.border", textBorder);
126 table
[all...]
/openjdk10/jdk/test/javax/swing/UIDefaults/6795356/
H A DTableTest.java36 import javax.swing.table.TableCellEditor;
46 JTable table = new JTable();
47 TableCellEditor de = table.getDefaultEditor(Double.class);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/
H A DMachineDescriptionTwosComplement.java82 private long tableLookup(long sizeInBytes, long[] table) { argument
85 return table[0];
87 return table[1];
89 return table[2];
91 return table[3];
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/fastinfoset/algorithm/
H A DBuiltInEncodingAlgorithmFactory.java35 private final static BuiltInEncodingAlgorithm[] table = field in class:BuiltInEncodingAlgorithmFactory
57 table[EncodingAlgorithmIndexes.HEXADECIMAL] = hexadecimalEncodingAlgorithm;
58 table[EncodingAlgorithmIndexes.BASE64] = base64EncodingAlgorithm;
59 table[EncodingAlgorithmIndexes.SHORT] = shortEncodingAlgorithm;
60 table[EncodingAlgorithmIndexes.INT] = intEncodingAlgorithm;
61 table[EncodingAlgorithmIndexes.LONG] = longEncodingAlgorithm;
62 table[EncodingAlgorithmIndexes.BOOLEAN] = booleanEncodingAlgorithm;
63 table[EncodingAlgorithmIndexes.FLOAT] = floatEncodingAlgorithm;
64 table[EncodingAlgorithmIndexes.DOUBLE] = doubleEncodingAlgorithm;
65 table[EncodingAlgorithmIndexe
[all...]
/openjdk10/jdk/test/javax/swing/plaf/metal/MetalLookAndFeel/
H A DTest8039750.java36 UIDefaults table= new MetalLookAndFeel().getDefaults();
37 test(table.get("ToolBar.rolloverBorder"),
40 test(table.get("ToolBar.nonrolloverBorder"),
43 test(table.get("RootPane.frameBorder"),
45 test(table.get("RootPane.plainDialogBorder"),
47 test(table.get("RootPane.informationDialogBorder"),
49 test(table.get("RootPane.errorDialogBorder"),
51 test(table.get("RootPane.colorChooserDialogBorder"),
53 test(table.get("RootPane.fileChooserDialogBorder"),
55 test(table
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/util/
H A DIdentityHashtableEnumerator.java46 IdentityHashtableEntry table[]; field in class:IdentityHashtableEnumerator
49 IdentityHashtableEnumerator(IdentityHashtableEntry table[], boolean keys) { argument
50 this.table = table;
52 this.index = table.length;
60 if ((entry = table[index]) != null) {
69 while ((index-- > 0) && ((entry = table[index]) == null));
/openjdk10/jdk/test/javax/swing/JTable/8133919/
H A DDrawGridLinesTest.java28 import javax.swing.table.AbstractTableModel;
29 import javax.swing.table.DefaultTableCellRenderer;
30 import javax.swing.table.TableModel;
71 JTable table = new JTable(dataModel);
72 table.setSize(WIDTH, HEIGHT);
73 table.setDefaultRenderer(Object.class, r);
74 table.setGridColor(GRID_COLOR);
75 table.setShowGrid(true);
76 table.setShowHorizontalLines(true);
77 table
83 checkTableGridLines(JTable table) argument
[all...]
/openjdk10/jdk/test/javax/swing/JTable/6894632/
H A Dbug6894632.java34 import javax.swing.table.DefaultTableModel;
35 import javax.swing.table.TableModel;
36 import javax.swing.table.TableRowSorter;
41 private static JTable table; field in class:bug6894632
47 //init table with empty sort order
50 //init table as unsorted
65 table = new JTable();
73 table.setModel(tableModel);
77 table.setRowSorter(sorter);
79 frame.setContentPane(table);
[all...]
/openjdk10/jdk/test/javax/swing/JTable/6567433/
H A DUpdateUIRecursionTest.java45 import javax.swing.table.DefaultTableCellRenderer;
46 import javax.swing.table.TableCellRenderer;
49 JTable table; field in class:UpdateUIRecursionTest
78 table = new JTable(data, columnNames);
81 getContentPane().add(new JScrollPane(table), BorderLayout.CENTER);
82 table.setDefaultRenderer(table.getColumnClass(1), this);
103 table.updateUI();
112 public Component getTableCellRendererComponent(JTable table, Object value, argument
116 return renderer.getTableCellRendererComponent(table, valu
[all...]
/openjdk10/jdk/test/javax/swing/JTableHeader/4473075/
H A Dbug4473075.java33 import javax.swing.table.DefaultTableModel;
39 private static JTable table; field in class:bug4473075
52 table = new JTable();
54 table.setModel(new DefaultTableModel(
57 table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
58 scpScroll = new JScrollPane(table);
61 Dimension preferredSize = new Dimension(table.getSize().width,
63 table.getTableHeader().setPreferredSize(preferredSize);
80 int headerH = table.getTableHeader().getHeight();
86 double tableX = table
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicTableUI.java40 import javax.swing.table.*;
70 protected JTable table; field in class:BasicTableUI
243 private void moveWithinTableRange(JTable table, int dx, int dy) { argument
244 leadRow = clipToRange(leadRow+dy, 0, table.getRowCount());
245 leadColumn = clipToRange(leadColumn+dx, 0, table.getColumnCount());
254 * This method uses the table's notion of selection, which is
258 * It depends on certain table properties (such as whether or not
264 private boolean moveWithinSelectedRange(JTable table, int dx, int dy, argument
270 // find out how many items the table is showing as selected
275 boolean rs = table
2191 getAdjustedLead(JTable table, boolean row, ListSelectionModel model) argument
2200 getAdjustedLead(JTable table, boolean row) argument
[all...]
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/fastinfoset/alphabet/
H A DBuiltInRestrictedAlphabets.java34 public final static char[][] table = field in class:BuiltInRestrictedAlphabets
38 table[RestrictedAlphabet.NUMERIC_CHARACTERS_INDEX] = RestrictedAlphabet.NUMERIC_CHARACTERS.toCharArray();
39 table[RestrictedAlphabet.DATE_TIME_CHARACTERS_INDEX] = RestrictedAlphabet.DATE_TIME_CHARACTERS.toCharArray();
/openjdk10/jdk/test/javax/swing/JTable/6768387/
H A Dbug6768387.java32 import javax.swing.table.AbstractTableModel;
38 JTable table = new JTable();
44 out.writeObject(table);
/openjdk10/jdk/test/javax/swing/plaf/synth/7032791/
H A Dbug7032791.java33 import javax.swing.table.TableCellRenderer;
42 JTable table = new JTable(1, 1);
43 TableCellRenderer renderer = table.getDefaultRenderer(Object.class);
/openjdk10/jdk/test/javax/swing/JTable/6788484/
H A Dbug6788484.java26 @summary NPE in DefaultTableCellHeaderRenderer.getColumnSortOrder() with null table
27 @modules java.desktop/sun.swing.table
39 import sun.swing.table.DefaultTableCellHeaderRenderer;

Completed in 221 milliseconds

1234567891011>>