Examples of Config2DImpl


Examples of fr.soleil.salsa.entity.impl.scan2d.Config2DImpl

                    range1DToAdd.setStepsNumber(1);
                    ((IConfig1D) config).getDimensionX().getRangesXList().add(range1DToAdd);
                    break;

                case SCAN_2D:
                    config = new Config2DImpl();
                    config.setScanAddOn(new ScanAddOnImp());
                    config.getScanAddOn().setDisplay(new DisplayImpl());
                    ((IConfig2D) config).setDimensionX(new Dimension2DXImpl());
                    // Creates one X range for a new 2D config.
                    IRange2DX xRangeToAdd = new Range2DXImpl();
View Full Code Here

Examples of fr.soleil.salsa.entity.impl.scan2d.Config2DImpl

            if (type.equals("Config1DImpl") || type.equals("Config1D")) {
                scan = new Config1DImpl(); // new Config1D();
                scan.setType(IConfig.ScanType.SCAN_1D);
            }
            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);
View Full Code Here

Examples of fr.soleil.salsa.entity.impl.scan2d.Config2DImpl

    public Config2DModel(IConfig2D config2D) {
        super(config2D);
    }

    public Config2DModel() {
        this(new Config2DImpl());
    }
View Full Code Here

Examples of fr.soleil.salsa.entity.impl.scan2d.Config2DImpl

                    range1DToAdd.setStepsNumber(1);
                    ((IConfig1D) config).getDimensionX().getRangesXList().add(range1DToAdd);
                    break;

                case SCAN_2D:
                    config = new Config2DImpl();
                    config.setScanAddOn(new ScanAddOnImp());
                    config.getScanAddOn().setDisplay(new DisplayImpl());
                    ((IConfig2D) config).setDimensionX(new Dimension2DXImpl());
                    // Creates one X range for a new 2D config.
                    IRange2DX xRangeToAdd = new Range2DXImpl();
View Full Code Here

Examples of fr.soleil.salsa.entity.impl.scan2d.Config2DImpl

            if (type.equals("Config1DImpl") || type.equals("Config1D")) {
                scan = new Config1DImpl(); // new Config1D();
                scan.setType(IConfig.ScanType.SCAN_1D);
            }
            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);
View Full Code Here

Examples of fr.soleil.salsa.entity.impl.scan2d.Config2DImpl

            if (type.equals("Config1DImpl") || type.equals("Config1D")) {
                scan = new Config1DImpl(); // new Config1D();
                scan.setType(IConfig.ScanType.SCAN_1D);
            }
            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);
View Full Code Here

Examples of fr.soleil.salsa.entity.impl.scan2d.Config2DImpl

                    ((IConfig1D) tmp).getDimensionX().getRangesXList().add(range1DToAdd);
                    configModel = wrap(tmp);

                    break;
                case SCAN_2D:
                    IConfig<?> tmp2d = new Config2DImpl();
                    tmp2d.setScanAddOn(new ScanAddOnImp());
                    tmp2d.getScanAddOn().setDisplay(new DisplayImpl());
                    ((IConfig2D) tmp2d).setDimensionX(new Dimension2DXImpl());

                    // Creates one X range for a new 2D config.
                    IRange2DX xRangeToAdd = new Range2DXImpl();
                    xRangeToAdd.setDimension(((IConfig2D) tmp2d).getDimensionX());
View Full Code Here

Examples of fr.soleil.salsa.entity.impl.scan2d.Config2DImpl

    public Config2DModel(IConfig2D config2D) {
        super(config2D);
    }

    public Config2DModel() {
        this(new Config2DImpl());
    }
View Full Code Here

Examples of fr.soleil.salsa.entity.impl.scan2d.Config2DImpl

                    ((IConfig1D) tmp).getDimensionX().getRangesXList().add(range1DToAdd);
                    configModel = wrap(tmp);

                    break;
                case SCAN_2D:
                    IConfig<?> tmp2d = new Config2DImpl();
                    tmp2d.setScanAddOn(new ScanAddOnImp());
                    tmp2d.getScanAddOn().setDisplay(new DisplayImpl());
                    ((IConfig2D) tmp2d).setDimensionX(new Dimension2DXImpl());

                    // Creates one X range for a new 2D config.
                    IRange2DX xRangeToAdd = new Range2DXImpl();
                    xRangeToAdd.setDimension(((IConfig2D) tmp2d).getDimensionX());
View Full Code Here

Examples of fr.soleil.salsa.entity.impl.scan2d.Config2DImpl

    public Config2DModel(IConfig2D config2D) {
        super(config2D);
    }
   
    public Config2DModel() {
        this(new Config2DImpl());
    }
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.