From bf3bbfa03c3fa0580edfe06b9b05dddd50b38d7f Mon Sep 17 00:00:00 2001 From: David Gilbert Date: Thu, 23 Mar 2006 10:17:30 +0000 Subject: 2006-03-23 David Gilbert * javax/swing/filechooser/UnixFileSystemView.java (getSystemDisplayName): Mark as stub, (getSystemIcon): Likewise, (getSystemTypeDescription): Likewise. ---------------------------------------------------------------------- --- javax/swing/filechooser/UnixFileSystemView.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'javax/swing/filechooser/UnixFileSystemView.java') diff --git a/javax/swing/filechooser/UnixFileSystemView.java b/javax/swing/filechooser/UnixFileSystemView.java index c2f65965e..96dfd2e1b 100644 --- a/javax/swing/filechooser/UnixFileSystemView.java +++ b/javax/swing/filechooser/UnixFileSystemView.java @@ -37,8 +37,11 @@ exception statement from your version. */ package javax.swing.filechooser; +import gnu.classpath.NotImplementedException; + import java.io.File; import java.io.IOException; + import javax.swing.Icon; @@ -110,6 +113,7 @@ class UnixFileSystemView extends FileSystemView * @return null. */ public String getSystemDisplayName(File f) + throws NotImplementedException { // FIXME: Implement; return null; @@ -124,6 +128,7 @@ class UnixFileSystemView extends FileSystemView * @return null. */ public Icon getSystemIcon(File f) + throws NotImplementedException { // FIXME: Implement; return null; @@ -138,6 +143,7 @@ class UnixFileSystemView extends FileSystemView * @return null. */ public String getSystemTypeDescription(File f) + throws NotImplementedException { // FIXME: Implement. return null; -- cgit v1.2.1