arcgissamples\display\NavigationData.java
/* Copyright 2010 ESRI * * All rights reserved under the copyright laws of the United States * and applicable international laws, treaties, and conventions. * * You may freely redistribute and use this sample code, with or * without modification, provided you include the original copyright * notice and use restrictions. * * See the use restrictions. * */ package arcgissamples.display; public class NavigationData { double x,y,azimuth,stepx, stepy = 0; int type = 0; public NavigationData(double x, double y, double azimuth, double stepx, double stepy, int type) { super(); // TODO Auto-generated constructor stub this.x = x; this.y = y; this.azimuth = azimuth; this.stepx = stepx; this.stepy = stepy; this.type = type; } public double getAzimuth() { return azimuth; } public void setAzimuth(double azimuth) { this.azimuth = azimuth; } public double getX() { return x; } public void setX(double x) { this.x = x; } public double getY() { return y; } public void setY(double y) { this.y = y; } public double getStepx() { return stepx; } public void setStepx(double stepx) { this.stepx = stepx; } public double getStepy() { return stepy; } public void setStepy(double stepy) { this.stepy = stepy; } }