Package com.pcmsolutions.gui

Source Code of com.pcmsolutions.gui.SystemPathFactory

package com.pcmsolutions.gui;

import com.pcmsolutions.system.Impl_SystemEntryPoint;
import com.pcmsolutions.system.SystemEntryPoint;
import com.pcmsolutions.system.Zoeos;
import com.pcmsolutions.system.paths.LogicalPath;

/**
* User: paulmeehan
* Date: 15-Feb-2004
* Time: 11:07:58
*/
public class SystemPathFactory {
    public static final SystemEntryPoint systemEntryPoint = new Impl_SystemEntryPoint(Zoeos.class, "ZoeOS");
    private static final String PATH_ELEMENT_ZOEOS = "ZoeOS";
    private static final String PATH_ELEMENT_PROPERTIES = "Properties";

    public static LogicalPath providePropertiesPath() {
        return new LogicalPath(systemEntryPoint, new Object[]{PATH_ELEMENT_ZOEOS, PATH_ELEMENT_PROPERTIES});
    }
}
TOP

Related Classes of com.pcmsolutions.gui.SystemPathFactory

TOP
Copyright © 2018 www.massapi.com. 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.