FileDocCategorySizeDatePackage
Support_PlatformFile.javaAPI DocAndroid 1.5 API1353Wed May 06 22:41:06 BST 2009tests.support

Support_PlatformFile

public class Support_PlatformFile extends Object

Fields Summary
private static String
platformId
Constructors Summary
Methods Summary
public static java.lang.StringgetNewPlatformFile(java.lang.String pre, java.lang.String post)


           
        if (platformId == null) {
            String property = System.getProperty("com.ibm.oti.configuration");
            if (property == null) {
                property = "JDK";
            }
            platformId = property
                    + System.getProperty("java.vm.version").replace('.", '-");
        }
        return pre + platformId + post;