Package com.ericsson.util.os.linux

Examples of com.ericsson.util.os.linux.OSUtilLinux


     */
    public static OSUtil getOSUtil(String flag) {
        OSUtil osUtil = null;

        if ((flag != null) && (_osName.indexOf("Linux") != -1)) {
            osUtil = new OSUtilLinux();
        } else {
            osUtil = new OSUtilSunspecific();
        }

        return osUtil;
View Full Code Here

TOP

Related Classes of com.ericsson.util.os.linux.OSUtilLinux

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.