Package gistoolkit.display.drawmodel

Examples of gistoolkit.display.drawmodel.ClickPointModel


   
    public void execute() {
        GISDisplay tempDisplay = getGISDisplay();
       
        if (tempDisplay != null) {
            tempDisplay.setDrawModel(new ClickPointModel(this));
        }
    }
View Full Code Here


        }
    }
   
    public void executeDraw(DrawModel inDrawModel) {
        if (inDrawModel instanceof ClickPointModel) {
            ClickPointModel tempClickPointModel = (ClickPointModel) inDrawModel;
            Point tempPoint = tempClickPointModel.getPoint();
            if (tempPoint != null){
                centerOnPoint(tempPoint);
            }
        }
    }
View Full Code Here

TOP

Related Classes of gistoolkit.display.drawmodel.ClickPointModel

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.