Examples of adjustTo()


Examples of com.volantis.map.ics.imageprocessor.tool.clip.ClipXY.adjustTo()

            // should try to crop the image.

            // adjust clipper for selected frame. It has to be cloned to preserve
            // initial clip area for further processing
            ClipXY frameClipper = (ClipXY) clipper.clone();
            frameClipper.adjustTo(image.getMinX(), image.getWidth(), image.getMinY(), image.getHeight());

            if (LOGGER.isDebugEnabled()) {
                LOGGER.debug("ClipInfo: " + clipper.toString());
                LOGGER.debug("FrameClipInfo: " + frameClipper.toString());
            }
View Full Code Here

Examples of org.eclipse.jface.internal.text.revisions.ChangeRegion.adjustTo()

    for (Iterator regions= fChangeRegions.iterator(); regions.hasNext();) {
      ChangeRegion region= (ChangeRegion) regions.next();
      region.clearDiff();
      for (int i= 0; i < hunks.length; i++) {
        Hunk hunk= hunks[i];
        region.adjustTo(hunk);
      }
    }
  }

  /**
 
View Full Code Here

Examples of org.eclipse.jface.internal.text.revisions.ChangeRegion.adjustTo()

    for (Iterator regions= fChangeRegions.iterator(); regions.hasNext();) {
      ChangeRegion region= (ChangeRegion) regions.next();
      region.clearDiff();
      for (int i= 0; i < hunks.length; i++) {
        Hunk hunk= hunks[i];
        region.adjustTo(hunk);
      }
    }
  }

  /**
 
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.