Package org.locationtech.udig.image.georeferencing.internal.ui.coordinatepanel

Examples of org.locationtech.udig.image.georeferencing.internal.ui.coordinatepanel.CoordinateTableComposite


  private void createCoordinateTableComposite(Composite parent) {

    ScrolledComposite scrollComposite = new ScrolledComposite(parent, SWT.NONE | SWT.H_SCROLL | SWT.V_SCROLL);
    scrollComposite.setLayout(new FillLayout());

    this.coordinateTableComposite = new CoordinateTableComposite(this.cmd, scrollComposite, SWT.NONE | SWT.NO_FOCUS);
    this.coordinateTableComposite.setLayout(new FillLayout());
    this.cmd.addObserver(coordinateTableComposite);

    // adds the parameters container to scroll composite
    scrollComposite.setContent(coordinateTableComposite);
View Full Code Here

TOP

Related Classes of org.locationtech.udig.image.georeferencing.internal.ui.coordinatepanel.CoordinateTableComposite

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.