Package fr.soleil.salsa.persistence.model

Examples of fr.soleil.salsa.persistence.model.Configuration.clean()


            if (result instanceof ISpectrumConfig<?>) {
                ISpectrumConfig<?> sc = (ISpectrumConfig<?>) result;
                sc.setChartProperties(c.getChartProperties());
                sc.setPlotPropertiesMap(c.getPlotPropertiesMap());
            }
            c.clean();
        }
        if (result == null) {
            StringBuilder builder = new StringBuilder("Failed to find configuration matching id = ");
            builder.append(id);
            throw new ScanNotFoundException(builder.toString());
View Full Code Here


            // the one provided by the save operation.
            if (result.getDirectory() != null && c.getDirectory() != null) {
                result.getDirectory().setTimestamp(c.getDirectory().getTimestamp());
            }
        }
        c.clean();

        return result;
    }

    @Override
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.