Package de.timefinder.core.util

Examples of de.timefinder.core.util.FixRelationShip


            fixRelationShip = Boolean.parseBoolean(prop.getProperty("tf.fixRelationship"));
        } catch (Exception ex) {
            logger.warn("Couldn't change fixRelationship: " + prop.getProperty("tf.fixRelationship"));
        }
        if (fixRelationShip) {
            int counter = new FixRelationShip(dataPool).doWork();
            if (counter > 1)
                logger.warn("Had to fix " + counter + " relationships");
        }
    }
View Full Code Here


    protected void doOnce() {
        int ret = JOptionPane.showConfirmDialog(null, tr.get(ID + ".question"));
        if (ret != JOptionPane.OK_OPTION)
            return;

        int counter = new FixRelationShip(dataPool).doWork();

        JOptionPane.showMessageDialog(null, tr.get(ID + ".result", counter));
    }
View Full Code Here

TOP

Related Classes of de.timefinder.core.util.FixRelationShip

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.