Examples of ITrajectoryK


Examples of fr.soleil.salsa.entity.scank.ITrajectoryK

    @Override
    public void notifyTimePreEdgeFieldChange(Double value) {
        if (config == null)
            return;

        ITrajectoryK trajectory = ((IConfigK) config).getDimensionX().getTrajectory();
        if (trajectory != null) {
            trajectory.setTimePreEdge(value);
            write();
            refresh();
        }
    }
View Full Code Here

Examples of fr.soleil.salsa.entity.scank.ITrajectoryK

    @Override
    public void notifyE0FieldChange(Double value) {
        if (config == null)
            return;

        ITrajectoryK trajectory = ((IConfigK) config).getDimensionX().getTrajectory();
        if (trajectory != null) {
            trajectory.setE0(value);
            ConfigKApiService.computeE0Change(trajectory);

            write();
            refresh();
        }
View Full Code Here

Examples of fr.soleil.salsa.entity.scank.ITrajectoryK

    @Override
    public void notifyE1FieldChange(Double value) {
        if (config == null)
            return;

        ITrajectoryK trajectory = ((IConfigK) config).getDimensionX().getTrajectory();
        if (trajectory != null) {
            trajectory.setE1(value);
            write();
            refresh();
        }
    }
View Full Code Here

Examples of fr.soleil.salsa.entity.scank.ITrajectoryK

    @Override
    public void notifyE2FieldChange(Double value) {
        if (config == null)
            return;

        ITrajectoryK trajectory = ((IConfigK) config).getDimensionX().getTrajectory();
        if (trajectory != null) {
            trajectory.setE2(value);

            ConfigKApiService.computeE2Change(trajectory);
            write();
            refresh();
        }
View Full Code Here

Examples of fr.soleil.salsa.entity.scank.ITrajectoryK

    @Override
    public void notifyEDeltaEdgeFieldChange(Double value) {
        if (config == null)
            return;

        ITrajectoryK trajectory = ((IConfigK) config).getDimensionX().getTrajectory();
        if (trajectory != null) {
            trajectory.setEDeltaEdge(value);
            write();
            refresh();
        }
    }
View Full Code Here

Examples of fr.soleil.salsa.entity.scank.ITrajectoryK

    @Override
    public void notifyTimeEdgeFieldChange(Double value) {
        if (config == null)
            return;

        ITrajectoryK trajectory = ((IConfigK) config).getDimensionX().getTrajectory();
        if (trajectory != null) {
            trajectory.setTimeEdge(value);
            write();
            refresh();
        }
    }
View Full Code Here

Examples of fr.soleil.salsa.entity.scank.ITrajectoryK

    @Override
    public void notifyMFieldChange(Double value) {
        if (config == null)
            return;

        ITrajectoryK trajectory = ((IConfigK) config).getDimensionX().getTrajectory();
        if (trajectory != null) {
            trajectory.setM(value);
            write();
            refresh();
        }
    }
View Full Code Here

Examples of fr.soleil.salsa.entity.scank.ITrajectoryK

    @Override
    public void notifyKDeltaFieldChange(Double value) {
        if (config == null)
            return;

        ITrajectoryK trajectory = ((IConfigK) config).getDimensionX().getTrajectory();
        if (trajectory != null) {
            if (value == 0)
                value = 0.05;
            trajectory.setKDelta(value);
            write();
            refresh();
        }
    }
View Full Code Here

Examples of fr.soleil.salsa.entity.scank.ITrajectoryK

    @Override
    public void notifyKMaxFieldChange(Double value) {
        if (config == null)
            return;

        ITrajectoryK trajectory = ((IConfigK) config).getDimensionX().getTrajectory();
        if (trajectory != null) {
            trajectory.setKMax(value);
            write();
            refresh();
        }
    }
View Full Code Here

Examples of fr.soleil.salsa.entity.scank.ITrajectoryK

    @Override
    public void notifyKMinFieldChange(Double value) {
        if (config == null)
            return;

        ITrajectoryK trajectory = ((IConfigK) config).getDimensionX().getTrajectory();
        if (trajectory != null) {
            trajectory.setKMin(value);
            write();
            refresh();
        }
    }
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.