Field separatorChar
Field type: char
Member of: java.io.File
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 private static final String PATH_TOKEN_DELIMITER = "/" + java.io.File.separatorChar; // NOI18N
2 protected static String PROPERTIES_DOC = "doc"+ File.separatorChar + "api" + File.separatorChar + "Parameters.html";
3 private static String dotPath = "."+File.separatorChar;
4 private static final String badWSDL = "test" + File.separatorChar +
5 return s.replace(File.separatorChar, '.');
6 return schemaReference == null ? "" : schemaReference.replace(File.separatorChar, '/'); //$NON-NLS-1$
7 return new FileNFile(new File(f, name.replace('/', File.separatorChar)));
8 String filename = classname.replace('.', File.separatorChar)+".class";
9 private static final boolean __Slosh2Slash=File.separatorChar=='\\';
10 return File.separatorChar == '/'
11 return f.getName().replace(File.separatorChar, '/');
12 return packageName.replace('.',File.separatorChar);
13 path = path.replace(File.separatorChar, '/');
14 classname = classname.replace('.', File.separatorChar);
15 result += File.separatorChar;
16 if (File.separatorChar == '\\') {
17 this.executable = executable.replace('/', File.separatorChar)
18 File.separatorChar, '/');
19 String newName = fileName.replace(File.separatorChar,'.');
20 String fileName = name.replace('.', File.separatorChar) + ".tea";
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.