Searched refs:accessory (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKFileChooserUI.java58 // The accessoryPanel is a container to place the JFileChooser accessory component
308 JComponent accessory = (JComponent)e.getNewValue();
309 if (accessory != null) {
310 getAccessoryPanel().add(accessory, BorderLayout.CENTER);
311 getAccessoryPanel().setPreferredSize(accessory.getPreferredSize());
576 // CENTER: left, right, accessory
632 JComponent accessory = fc.getAccessory();
634 if (accessory == null) {
638 getAccessoryPanel().add(accessory, BorderLayout.CENTER);
639 accessoryPanel.setPreferredSize(accessory
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifFileChooserUI.java234 JComponent accessory = (JComponent) e.getNewValue();
235 if(accessory != null) {
236 getAccessoryPanel().add(accessory, BorderLayout.CENTER);
324 // CENTER: left, right accessory
393 JComponent accessory = fc.getAccessory();
395 if(accessory == null) {
399 getAccessoryPanel().add(accessory, BorderLayout.CENTER);
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DSynthFileChooserUIImpl.java338 JComponent accessory = fc.getAccessory();
339 if (accessory != null) {
340 getAccessoryPanel().add(accessory);
604 JComponent accessory = (JComponent)e.getNewValue();
605 if (accessory != null) {
606 getAccessoryPanel().add(accessory, BorderLayout.CENTER);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJFileChooser.java217 * Says that a different accessory component is in use
255 private JComponent accessory = null; field in class:JFileChooser
1234 * Returns the accessory component.
1236 * @return this JFileChooser's accessory component, or null
1240 return accessory;
1244 * Sets the accessory component. An accessory is often used to show a
1249 * Note: if there was a previous accessory, you should unregister
1250 * any listeners that the accessory might have registered with the
1256 * description: Sets the accessory componen
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalFileChooserUI.java359 JComponent accessory = fc.getAccessory();
360 if(accessory != null) {
361 getAccessoryPanel().add(accessory);
702 JComponent accessory = (JComponent) e.getNewValue();
703 if(accessory != null) {
704 getAccessoryPanel().add(accessory, BorderLayout.CENTER);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsFileChooserUI.java379 JComponent accessory = fc.getAccessory();
380 if(accessory != null) {
381 getAccessoryPanel().add(accessory);
768 JComponent accessory = (JComponent) e.getNewValue();
769 if(accessory != null) {
770 getAccessoryPanel().add(accessory, BorderLayout.CENTER);
/openjdk7/jdk/src/share/demo/jfc/FileChooserDemo/
H A DFileChooserDemo.java433 JComponent accessory = chooser.getAccessory();
434 if (accessory != null) {
435 ((FilePreviewer) accessory).loadImage(null);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileChooserUI.java123 // The accessoryPanel is a container to place the JFileChooser accessory component
401 final JComponent accessory = (JComponent)e.getNewValue();
402 if (accessory != null) {
403 getAccessoryPanel().add(accessory, BorderLayout.CENTER);
1488 final JComponent accessory = fc.getAccessory();
1489 if (accessory != null) {
1490 getAccessoryPanel().add(accessory);

Completed in 145 milliseconds