Examples of ODMGXAWrapper


Examples of org.photovault.dbhelper.ODMGXAWrapper

     Check that the e crop bounds are defined in consistent manner. This is needed
     since in old installations the max parameters can be larger than min ones.
     */
   
    private void checkCropBounds() {
        ODMGXAWrapper txw = new ODMGXAWrapper();
        if ( cropMaxX - cropMinX <= 0) {
            txw.lock( this, Transaction.WRITE );
            cropMaxX = 1.0 - cropMinX;
        }
        if ( cropMaxY - cropMinY <= 0) {
            txw.lock( this, Transaction.WRITE );
            cropMaxY = 1.0 - cropMinY;
        }
        txw.commit();
    }
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.