Searched defs:table (Results 1 - 25 of 247) sorted by relevance

12345678910

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DNonContextualGlyphSubst.h50 LookupTable table; member in struct:NonContextualGlyphSubstitutionHeader
55 LookupTable table; member in struct:NonContextualGlyphSubstitutionHeader2
/openjdk7/hotspot/agent/src/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());
H A DSortHeaderCellRenderer.java25 package sun.jvm.hotspot.ui.table;
30 import javax.swing.table.*;
71 public Component getTableCellRendererComponent(JTable table, Object value, argument
H A DSortableTableModel.java25 package sun.jvm.hotspot.ui.table;
31 import javax.swing.table.AbstractTableModel;
34 * A table model which stores its rows as a list. The elements
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DTableCellEditor.java26 package javax.swing.table;
54 * @param table the <code>JTable</code> that is asking the
69 Component getTableCellEditorComponent(JTable table, Object value, argument
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
91 Component getTableCellRendererComponent(JTable table, Object value, argument
H A DTableStringConverter.java25 package javax.swing.table;
/openjdk7/jdk/src/share/classes/sun/swing/plaf/
H A DGTKKeybindings.java40 * Install all GTK keybindings into the provided UIDefaults table
42 * @param table The UiDefaults table to install into
44 public static void installKeybindings(UIDefaults table) { argument
739 table.putDefaults(defaults);
H A DWindowsKeybindings.java40 * Install all Windows keybindings into the provided UIDefaults table
42 * @param table The UiDefaults table to install into
44 public static void installKeybindings(UIDefaults table) { argument
645 table.putDefaults(defaults);
/openjdk7/jdk/test/javax/swing/AbstractButton/6711682/
H A Dbug6711682.java35 import javax.swing.table.TableCellEditor;
36 import javax.swing.table.TableCellRenderer;
45 private static JTable table; field in class:bug6711682
57 Point l = table.getLocationOnScreen();
58 int h = table.getRowHeight();
69 table.getCellEditor().stopCellEditing();
71 if (!Boolean.TRUE.equals(table.getValueAt(i, 0))) {
88 table.getCellEditor().stopCellEditing();
90 if (Boolean.TRUE.equals(table.getValueAt(i, 0))) {
104 table
[all...]
/openjdk7/jdk/test/javax/swing/JTable/7188612/
H A DJTableAccessibleGetLocationOnScreen.java44 private static JTable table; field in class:JTableAccessibleGetLocationOnScreen
71 table = new JTable(data, columnNames);
72 frame.add(table);
81 AccessibleTable accessibleTable = (AccessibleTable) table
95 (JComponent.AccessibleJComponent) table.getAccessibleContext();
/openjdk7/jdk/test/javax/swing/JTable/
H A DTest6888156.java26 @summary Tests table column of class Icon.class with Synth LAF
35 import javax.swing.table.AbstractTableModel;
36 import javax.swing.table.TableModel;
39 private JTable table; field in class:Test6888156
71 table = new JTable(model);
84 SwingUtilities.updateComponentTreeUI(table);
85 table.setSize(100, 100);
86 table.paint(
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXAWTLookAndFeel.java44 * Load the SystemColors into the defaults table. The keys
46 * the public fields in SystemColor. If the table is being
51 protected void initSystemColorDefaults(UIDefaults table) { argument
82 loadSystemColors(table, defaultSystemColors, true);
85 protected void initComponentDefaults(UIDefaults table) { argument
86 super.initComponentDefaults(table);
100 Color back = table.getColor("control");
105 table.getColor("controlShadow"),
106 table.getColor("controlLtHighlight"));
109 table
[all...]
/openjdk7/jaxws/src/share/jaxws_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();
/openjdk7/jdk/src/share/classes/sun/text/
H A DSupplementaryCharacterData.java51 * Creates a new SupplementaryCharacterData object with the given table.
53 public SupplementaryCharacterData(int[] table) { argument
54 dataTable = table;
/openjdk7/jdk/src/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();
/openjdk7/jdk/test/javax/swing/JTable/7055065/
H A Dbug7055065.java49 import javax.swing.table.AbstractTableModel;
50 import javax.swing.table.TableModel;
51 import javax.swing.table.TableRowSorter;
57 private static JTable table; field in class:bug7055065
87 Rectangle rect = table.getCellRect(row, column, false);
90 SwingUtilities.convertPointToScreen(point, table);
105 Rectangle rect = table.getCellRect(0, column, false);
106 int headerHeight = table.getTableHeader().getHeight();
109 SwingUtilities.convertPointToScreen(point, table);
131 table
[all...]
/openjdk7/jdk/test/javax/swing/JTable/7068740/
H A Dbug7068740.java36 import javax.swing.table.DefaultTableModel;
44 private static JTable table = null; field in class:bug7068740
68 table = new JTable(model);
70 JLayer<JComponent> layer = new JLayer<>(table, layerUI);
109 table.setRowSelectionInterval(0, 0);
113 if (table.getSelectedRow() != 19) {
119 if (table.getSelectedRow() != 0) {
/openjdk7/corba/src/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));
/openjdk7/hotspot/agent/src/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];
/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleBundle.java52 private static Hashtable table = new Hashtable(); field in class:AccessibleBundle
85 Object o = table.get(locale);
131 if (! table.contains(locale)) {
144 table.put(locale, resourceTable);
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_c_ImageLookUp.c29 * mlib_ImageLookUp - table lookup
34 * const void **table)
39 * table Lookup table.
42 * The mlib_ImageLookUp function performs general table lookup on an
44 * through a lookup table.
48 * table may be 1-, 2-, 3-, or 4-channeled of data types MLIB_BYTE,
51 * number of channels as either source image or the lookup table,
52 * whichever is greater, and the same data type as the lookup table.
54 * It is the user's responsibility to make sure that the lookup table
81 mlib_ImageLookUp(mlib_image *dst, const mlib_image *src, const void **table) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingLazyValue.java64 public Object createValue(final UIDefaults table) { argument
/openjdk7/jdk/src/share/demo/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...]

Completed in 177 milliseconds

12345678910