Package bdsup2sub.tools

Examples of bdsup2sub.tools.Props.save()


                    colProps.setHeader("COL - created by " + Constants.APP_NAME + " " + Constants.APP_VERSION);
                    for (int i=0; i<  model.getSelectedColors().length; i++) {
                        String s = String.valueOf(model.getSelectedColors()[i].getRed()) + "," +  model.getSelectedColors()[i].getGreen() + "," + model.getSelectedColors()[i].getBlue();
                        colProps.set("Color_" + i, s);
                    }
                    colProps.save(model.getColorProfilePath());
                } catch (CoreException ex) {
                    if (ex.getMessage() != null) {
                        JOptionPane.showMessageDialog(view, ex.getMessage(), "Error!", JOptionPane.WARNING_MESSAGE);
                    }
                }
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.