Package com.pcmsolutions.system.paths

Examples of com.pcmsolutions.system.paths.LogicalPath


    private static final Object[] LOGICAL_PATH_PRESETS = new Object[]{PATH_ELEMENT_DEVICE, PATH_ELEMENT_PRESETS};
    private static final Object[] LOGICAL_PATH_SAMPLES = new Object[]{PATH_ELEMENT_DEVICE, PATH_ELEMENT_SAMPLES};
    */

    public static LogicalPath provideDevicePath(DeviceContext dc) {
        return new LogicalPath(dc.getSystemEntryPoint(), new Object[]{PATH_ELEMENT_DEVICE, dc.getStaticName()});
    }
View Full Code Here


    public static LogicalPath provideDevicePath(DeviceContext dc) {
        return new LogicalPath(dc.getSystemEntryPoint(), new Object[]{PATH_ELEMENT_DEVICE, dc.getStaticName()});
    }

    public static LogicalPath providePropertiesPath(DeviceContext dc) {
        return new LogicalPath(dc.getSystemEntryPoint(), new Object[]{PATH_ELEMENT_DEVICE, dc.getStaticName(), PATH_ELEMENT_PROPERTIES});
    }
View Full Code Here

    public static LogicalPath providePropertiesPath(DeviceContext dc) {
        return new LogicalPath(dc.getSystemEntryPoint(), new Object[]{PATH_ELEMENT_DEVICE, dc.getStaticName(), PATH_ELEMENT_PROPERTIES});
    }

    public static LogicalPath providePresetsPath(DeviceContext dc) {
        return new LogicalPath(dc.getSystemEntryPoint(), new Object[]{PATH_ELEMENT_DEVICE, dc.getStaticName(), PATH_ELEMENT_PRESETS});
    }
View Full Code Here

    public static LogicalPath providePresetsPath(DeviceContext dc) {
        return new LogicalPath(dc.getSystemEntryPoint(), new Object[]{PATH_ELEMENT_DEVICE, dc.getStaticName(), PATH_ELEMENT_PRESETS});
    }

    public static LogicalPath provideSamplesPath(DeviceContext dc) {
        return new LogicalPath(dc.getSystemEntryPoint(), new Object[]{PATH_ELEMENT_DEVICE, dc.getStaticName(), PATH_ELEMENT_SAMPLES});
    }
View Full Code Here

    public static LogicalPath provideSamplesPath(DeviceContext dc) {
        return new LogicalPath(dc.getSystemEntryPoint(), new Object[]{PATH_ELEMENT_DEVICE, dc.getStaticName(), PATH_ELEMENT_SAMPLES});
    }

    public static LogicalPath provideMultiModePath(DeviceContext dc) {
        return new LogicalPath(dc.getSystemEntryPoint(), new Object[]{PATH_ELEMENT_DEVICE, dc.getStaticName(), PATH_ELEMENT_MULTIMODE});
    }
View Full Code Here

    public static LogicalPath provideMultiModePath(DeviceContext dc) {
        return new LogicalPath(dc.getSystemEntryPoint(), new Object[]{PATH_ELEMENT_DEVICE, dc.getStaticName(), PATH_ELEMENT_MULTIMODE});
    }

    public static LogicalPath provideMasterPath(DeviceContext dc) {
        return new LogicalPath(dc.getSystemEntryPoint(), new Object[]{PATH_ELEMENT_DEVICE, dc.getStaticName(), PATH_ELEMENT_MASTER});
    }
View Full Code Here

                paths[i] = provideVoicePath(voices[i]).append(new Object[]{PATH_ELEMENT_VOICE_SECTIONS, VoiceSections.makeEnumeratedSectionString(sections)});
        return paths;
    }

    public static LogicalPath provideGroupPath(ReadablePreset.ReadableVoice voice) {
        LogicalPath path;
        path = providePresetPath(voice.getPreset()).append(new Object[]{PATH_ELEMENT_GROUPS, "G(v" + voice.getVoiceNumber() + ")"});
        return path;
    }
View Full Code Here

        path = providePresetPath(voice.getPreset()).append(new Object[]{PATH_ELEMENT_GROUPS, "G(v" + voice.getVoiceNumber() + ")"});
        return path;
    }

    public static LogicalPath provideGroupSectionPath(ReadablePreset.ReadableVoice voice, int sections) {
        LogicalPath path;
        path = provideGroupPath(voice).append(new Object[]{PATH_ELEMENT_VOICE_SECTIONS, VoiceSections.makeEnumeratedSectionString(sections)});
        return path;
    }
View Full Code Here

    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});
    }
View Full Code Here

TOP

Related Classes of com.pcmsolutions.system.paths.LogicalPath

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.