Changeset 212:ab60f3309436 for dwt/dwthelper/File.d
- Timestamp:
- 05/04/08 18:12:38 (8 months ago)
- Files:
-
- dwt/dwthelper/File.d (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/dwthelper/File.d
r0 r212 13 13 14 14 public static char separatorChar; 15 public static char[]separator;15 public static String separator; 16 16 public static char pathSeparatorChar; 17 public static char[]pathSeparator;17 public static String pathSeparator; 18 18 19 19 private tango.io.FilePath.FilePath mFilePath; … … 26 26 } 27 27 28 public this ( char[]pathname ){28 public this ( String pathname ){ 29 29 mFilePath = new tango.io.FilePath.FilePath( pathname ); 30 30 } 31 31 32 public this ( char[] parent, char[]child ){32 public this ( String parent, String child ){ 33 33 mFilePath = new tango.io.FilePath.FilePath( tango.io.FilePath.FilePath.join( parent, child ) ); 34 34 } 35 35 36 public this ( dwt.dwthelper.File.File parent, char[]child ){36 public this ( dwt.dwthelper.File.File parent, String child ){ 37 37 mFilePath = new tango.io.FilePath.FilePath( tango.io.FilePath.FilePath.join( parent.mFilePath.toString, child ) ); 38 38 } … … 43 43 } 44 44 45 public char[]getName(){46 implMissing( __FILE__, __LINE__ ); 47 return null; 48 } 49 50 public char[]getParent(){45 public String getName(){ 46 implMissing( __FILE__, __LINE__ ); 47 return null; 48 } 49 50 public String getParent(){ 51 51 implMissing( __FILE__, __LINE__ ); 52 52 return null; … … 58 58 } 59 59 60 public char[]getPath(){60 public String getPath(){ 61 61 implMissing( __FILE__, __LINE__ ); 62 62 return null; … … 68 68 } 69 69 70 public char[]getAbsolutePath(){70 public String getAbsolutePath(){ 71 71 return tango.io.FileSystem.FileSystem.toAbsolute( mFilePath ).toString; 72 72 } … … 76 76 } 77 77 78 public char[]getCanonicalPath(){78 public String getCanonicalPath(){ 79 79 implMissing( __FILE__, __LINE__ ); 80 80 return null; … … 137 137 } 138 138 139 public char[][] list(){139 public String[] list(){ 140 140 implMissing( __FILE__, __LINE__ ); 141 141 return null; … … 177 177 } 178 178 179 public static dwt.dwthelper.File.File createTempFile( char[] prefix, char[]suffix, dwt.dwthelper.File.File directory ){180 implMissing( __FILE__, __LINE__ ); 181 return null; 182 } 183 184 public static dwt.dwthelper.File.File createTempFile( char[] prefix, char[]suffix ){179 public static dwt.dwthelper.File.File createTempFile( String prefix, String suffix, dwt.dwthelper.File.File directory ){ 180 implMissing( __FILE__, __LINE__ ); 181 return null; 182 } 183 184 public static dwt.dwthelper.File.File createTempFile( String prefix, String suffix ){ 185 185 implMissing( __FILE__, __LINE__ ); 186 186 return null; … … 192 192 } 193 193 194 public char[]toString(){194 public String toString(){ 195 195 implMissing( __FILE__, __LINE__ ); 196 196 return null;
