summaryrefslogtreecommitdiff
path: root/javax/swing/plaf/multi/MultiFileChooserUI.java
diff options
context:
space:
mode:
authorDavid Gilbert <david.gilbert@object-refinery.com>2006-05-11 16:23:22 +0000
committerDavid Gilbert <david.gilbert@object-refinery.com>2006-05-11 16:23:22 +0000
commit13433f56bd0fa1c548b4521d3553bcd8e7989880 (patch)
tree598cdccf71706e6425ae4354fc65a35ffeb6abcb /javax/swing/plaf/multi/MultiFileChooserUI.java
parenta6321fe46da5087dece3872415ef6f4d0ef4bc09 (diff)
downloadclasspath-13433f56bd0fa1c548b4521d3553bcd8e7989880.tar.gz
2006-05-11 David Gilbert <david.gilbert@object-refinery.com>
* javax/swing/plaf/multi/MultiComboBoxUI.java: Minor formatting change, * javax/swing/plaf/multi/MultiFileChooserUI.java: Likewise, * javax/swing/plaf/multi/MultiListUI.java: Likewise, * javax/swing/plaf/multi/MultiLookAndFeel.java: Likewise, * javax/swing/plaf/multi/MultiOptionPaneUI.java: Likewise, * javax/swing/plaf/multi/MultiSplitPaneUI.java: Likewise, * javax/swing/plaf/multi/MultiTabbedPaneUI.java: Likewise. ----------------------------------------------------------------------
Diffstat (limited to 'javax/swing/plaf/multi/MultiFileChooserUI.java')
-rw-r--r--javax/swing/plaf/multi/MultiFileChooserUI.java18
1 files changed, 12 insertions, 6 deletions
diff --git a/javax/swing/plaf/multi/MultiFileChooserUI.java b/javax/swing/plaf/multi/MultiFileChooserUI.java
index 6f8826010..719f04374 100644
--- a/javax/swing/plaf/multi/MultiFileChooserUI.java
+++ b/javax/swing/plaf/multi/MultiFileChooserUI.java
@@ -364,7 +364,8 @@ public class MultiFileChooserUI extends FileChooserUI
* @return The filter returned by the UI delegate from the primary
* look and feel.
*/
- public FileFilter getAcceptAllFileFilter(JFileChooser chooser) {
+ public FileFilter getAcceptAllFileFilter(JFileChooser chooser)
+ {
FileFilter result = null;
Iterator iterator = uis.iterator();
// first UI delegate provides the return value
@@ -393,7 +394,8 @@ public class MultiFileChooserUI extends FileChooserUI
* @return The view returned by the UI delegate from the primary
* look and feel.
*/
- public FileView getFileView(JFileChooser chooser) {
+ public FileView getFileView(JFileChooser chooser)
+ {
FileView result = null;
Iterator iterator = uis.iterator();
// first UI delegate provides the return value
@@ -422,7 +424,8 @@ public class MultiFileChooserUI extends FileChooserUI
* @return The text returned by the UI delegate from the primary
* look and feel.
*/
- public String getApproveButtonText(JFileChooser chooser) {
+ public String getApproveButtonText(JFileChooser chooser)
+ {
String result = null;
Iterator iterator = uis.iterator();
// first UI delegate provides the return value
@@ -451,7 +454,8 @@ public class MultiFileChooserUI extends FileChooserUI
* @return The title returned by the UI delegate from the primary
* look and feel.
*/
- public String getDialogTitle(JFileChooser chooser) {
+ public String getDialogTitle(JFileChooser chooser)
+ {
String result = null;
Iterator iterator = uis.iterator();
// first UI delegate provides the return value
@@ -476,7 +480,8 @@ public class MultiFileChooserUI extends FileChooserUI
*
* @param chooser the file chooser.
*/
- public void rescanCurrentDirectory(JFileChooser chooser) {
+ public void rescanCurrentDirectory(JFileChooser chooser)
+ {
Iterator iterator = uis.iterator();
while (iterator.hasNext())
{
@@ -493,7 +498,8 @@ public class MultiFileChooserUI extends FileChooserUI
* @param chooser the file chooser.
* @param file the file.
*/
- public void ensureFileIsVisible(JFileChooser chooser, File file) {
+ public void ensureFileIsVisible(JFileChooser chooser, File file)
+ {
Iterator iterator = uis.iterator();
while (iterator.hasNext())
{