Package fr.soleil.salsa.entity.impl.scanenergy

Examples of fr.soleil.salsa.entity.impl.scanenergy.RangeEnergyImpl


            } else if (dimension instanceof IDimension2DY) {
                range = new Range2DYImpl();
                trajectory = new Trajectory2DYImpl();
                ((IDimension2DY) dimension).getRangesList().add((IRange2DY) range);
            } else if (dimension instanceof IDimensionEnergy) {
                range = new RangeEnergyImpl();
                trajectory = new TrajectoryEnergyImpl();
                ((IDimensionEnergy) dimension).getRangesEnergyList().add((IRangeEnergy) range);
            } else if (dimension instanceof IDimension1D) {
                range = new Range1DImpl();
                trajectory = new Trajectory1DImpl();
View Full Code Here


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

TOP

Related Classes of fr.soleil.salsa.entity.impl.scanenergy.RangeEnergyImpl

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.