Example usage for org.apache.commons.lang SystemUtils JAVA_VM_VENDOR

List of usage examples for org.apache.commons.lang SystemUtils JAVA_VM_VENDOR

Introduction

In this page you can find the example usage for org.apache.commons.lang SystemUtils JAVA_VM_VENDOR.

Prototype

String JAVA_VM_VENDOR

To view the source code for org.apache.commons.lang SystemUtils JAVA_VM_VENDOR.

Click Source Link

Document

The java.vm.vendor System Property.

Usage

From source file:net.sf.jasperreports.soutils.EnvironmentUtils.java

private static String getTestSensitiveJavaVMVendor() {
    String forcedVendor = System.getProperty(WBP_JAVA_VM_VENDOR);
    if (forcedVendor != null) {
        return forcedVendor;
    } else {//from ww w .j a  va  2  s .c o m
        return SystemUtils.JAVA_VM_VENDOR;
    }
}

From source file:org.eclipse.wb.internal.core.EnvironmentUtils.java

private static String getTestSensetive_JAVA_VM_VENDOR() {
    String forcedVendor = System.getProperty(WBP_JAVA_VM_VENDOR);
    if (forcedVendor != null) {
        return forcedVendor;
    } else {//from   w ww . j  a  v  a2s  . c om
        return SystemUtils.JAVA_VM_VENDOR;
    }
}