Examples of AcquisitionSection


Examples of fr.soleil.lib.flyscan.model.parsing.configuration.section.AcquisitionSection

        int[] dimensions = null;

        if (configuration != null) {
            for (Section section : configuration.getSections()) {
                if (section instanceof AcquisitionSection) {
                    final AcquisitionSection acquisitionSection = (AcquisitionSection) section;
                    boolean isContinuous = acquisitionSection.isContinuousScan();
                    boolean isZigzag = acquisitionSection.isZigZag();
                    dimensions = acquisitionSection.getScanDimensions();

                    if (!isContinuous) {
                        scanType = ScanType.STEP_BY_STEP;
                    } else if (isZigzag) {
                        scanType = ScanType.ZIGZAG;
View Full Code Here

Examples of fr.soleil.lib.flyscan.model.parsing.configuration.section.AcquisitionSection

                                + " must exist within a section");
                    }

                    // Handle new section
                    if (name.equals(ParsingUtil.ACQUISITION)) {
                        currentSection = new AcquisitionSection();
                    } else if (name.equals(ParsingUtil.ACTORS)) {
                        currentSection = new ActorSection();
                    } else if (name.equals(ParsingUtil.BEHAVIOR)) {
                        currentSection = new BehaviorSection();
                    } else if (name.equals(ParsingUtil.INFO)) {
View Full Code Here
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.