Examples of ConfigHCSImpl


Examples of fr.soleil.salsa.entity.impl.scanhcs.ConfigHCSImpl

    /**
     * Default constructor, that creates a new instance of {@link ConfigHCSImpl} and wraps it.
     */
    public ConfigHCSModel() {
        this(new ConfigHCSImpl());
    }
View Full Code Here

Examples of fr.soleil.salsa.entity.impl.scanhcs.ConfigHCSImpl

    /**
     * Default constructor, that creates a new instance of Config1DImpl and wraps it.
     */
    public ConfigHCSModel() {
        this(new ConfigHCSImpl());
    }
View Full Code Here

Examples of fr.soleil.salsa.entity.impl.scanhcs.ConfigHCSImpl

    /**
     * Default constructor, that creates a new instance of Config1DImpl and wraps it.
     */
    public ConfigHCSModel() {
        this(new ConfigHCSImpl());
    }
View Full Code Here

Examples of fr.soleil.salsa.entity.impl.scanhcs.ConfigHCSImpl

                    yRangeToAdd.setStepsNumber(1);
                    ((IConfig2D) config).getDimensionY().getRangesList().add(yRangeToAdd);
                    break;

                case SCAN_HCS:
                    config = new ConfigHCSImpl();
                    config.setScanAddOn(new ScanAddOnImp());
                    config.getScanAddOn().setDisplay(new DisplayImpl());
                    ((IConfigHCS) config).setDimensionX(new DimensionHCSImpl());
                    // Creates one range for a new HCS config.
                    IRangeHCS rangeHCSToAdd = new RangeHCSImpl();
View Full Code Here

Examples of fr.soleil.salsa.entity.impl.scanhcs.ConfigHCSImpl

            else if (type.equals("Config2DImpl") || type.equals("Config2D")) {
                scan = new Config2DImpl(); // new Config1D();
                scan.setType(IConfig.ScanType.SCAN_2D);
            }
            else if (type.equals("ConfigHCSImpl") || type.equals("ConfigHCS")) {
                scan = new ConfigHCSImpl();
                scan.setType(IConfig.ScanType.SCAN_HCS);
            }
            else if (type.equals("ConfigKImpl") || type.equals("ConfigK")) {
                scan = new ConfigKImpl();
                scan.setType(IConfig.ScanType.SCAN_K);
View Full Code Here

Examples of fr.soleil.salsa.entity.impl.scanhcs.ConfigHCSImpl

                    yRangeToAdd.setStepsNumber(1);
                    ((IConfig2D) config).getDimensionY().getRangesList().add(yRangeToAdd);
                    break;

                case SCAN_HCS:
                    config = new ConfigHCSImpl();
                    config.setScanAddOn(new ScanAddOnImp());
                    config.getScanAddOn().setDisplay(new DisplayImpl());
                    ((IConfigHCS) config).setDimensionX(new DimensionHCSImpl());
                    // Creates one range for a new HCS config.
                    IRangeHCS rangeHCSToAdd = new RangeHCSImpl();
View Full Code Here

Examples of fr.soleil.salsa.entity.impl.scanhcs.ConfigHCSImpl

            else if (type.equals("Config2DImpl") || type.equals("Config2D")) {
                scan = new Config2DImpl(); // new Config1D();
                scan.setType(IConfig.ScanType.SCAN_2D);
            }
            else if (type.equals("ConfigHCSImpl") || type.equals("ConfigHCS")) {
                scan = new ConfigHCSImpl();
                scan.setType(IConfig.ScanType.SCAN_HCS);
            }
            else if (type.equals("ConfigKImpl") || type.equals("ConfigK")) {
                scan = new ConfigKImpl();
                scan.setType(IConfig.ScanType.SCAN_K);
View Full Code Here

Examples of fr.soleil.salsa.entity.impl.scanhcs.ConfigHCSImpl

    /**
     * Default constructor, that creates a new instance of Config1DImpl and wraps it.
     */
    public ConfigHCSModel() {
        this(new ConfigHCSImpl());
    }
View Full Code Here

Examples of fr.soleil.salsa.entity.impl.scanhcs.ConfigHCSImpl

            else if (type.equals("Config2DImpl") || type.equals("Config2D")) {
                scan = new Config2DImpl(); // new Config1D();
                scan.setType(IConfig.ScanType.SCAN_2D);
            }
            else if (type.equals("ConfigHCSImpl") || type.equals("ConfigHCS")) {
                scan = new ConfigHCSImpl();
                scan.setType(IConfig.ScanType.SCAN_HCS);
            }
            else if (type.equals("ConfigKImpl") || type.equals("ConfigK")) {
                scan = new ConfigKImpl();
                scan.setType(IConfig.ScanType.SCAN_K);
View Full Code Here

Examples of fr.soleil.salsa.entity.impl.scanhcs.ConfigHCSImpl

                    ((IConfig2D) tmp2d).getDimensionY().getRangesList().add(yRangeToAdd);
                    configModel = wrap(tmp2d);

                    break;
                case SCAN_HCS:
                    ConfigHCSImpl tmpHCS = new ConfigHCSImpl();
                    tmpHCS.setScanAddOn(new ScanAddOnImp());
                    tmpHCS.getScanAddOn().setDisplay(new DisplayImpl());
                    tmpHCS.setDimensionX(new DimensionHCSImpl());

                    // ((IConfigHCS) configModel).setDimensionX(new DimensionHCSModel());

                    // Creates one range for a new HCS config.
                    IRangeHCS rangeHCSToAdd = new RangeHCSImpl();
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.