public void setLatLon(LatLonPoint latLon) { if (shouldNotify && !this.latLon.equals(latLon)) HistoryListModel.getInstance() .addModel(new HistoryModel("setLatLon", "Lat/Lon", "", this, latLon, this.latLon)); firePropertyChange("latLon", this.latLon, latLon); this.latLon = latLon; }
public void setIdent(String ident) { if (shouldNotify && !this.ident.equals(ident)) HistoryListModel.getInstance() .addModel(new HistoryModel("setIdent", "Ident", "", this, ident, this.ident)); firePropertyChange("ident", this.ident, ident); this.ident = ident; }
public void setMagvar(float magvar) { if (shouldNotify && this.magvar != magvar) HistoryListModel.getInstance() .addModel( new HistoryModel( "setMagvar", "Magvar", "", this, new Float(magvar), new Float(this.magvar))); this.magvar = magvar; }
public void setAlt(double alt) { if (shouldNotify && this.alt != alt) HistoryListModel.getInstance() .addModel( new HistoryModel( "setAlt", "Altitude", "", this, new Double(alt), new Double(this.alt))); this.alt = alt; }
public void setAltMeasure(String altMeasure) { if (shouldNotify && !this.altMeasure.equals(altMeasure)) HistoryListModel.getInstance() .addModel( new HistoryModel( "setAltMeasure", "Altitude Measure", "", this, altMeasure, this.altMeasure)); this.altMeasure = altMeasure; }
public void setTrafficScalar(float trafficScalar) { if (shouldNotify && this.trafficScalar != trafficScalar) HistoryListModel.getInstance() .addModel( new HistoryModel( "setTrafficScalar", "Traffic Scalar", "", this, new Float(trafficScalar), new Float(this.trafficScalar))); this.trafficScalar = trafficScalar; }
public void setAirportTestRadiusMeasure(String airportTestRadiusMeasure) { if (shouldNotify && !this.airportTestRadiusMeasure.equals(airportTestRadiusMeasure)) HistoryListModel.getInstance() .addModel( new HistoryModel( "setAirportTestRadiusMeasure", "Airport Test Radius Measure", "", this, airportTestRadiusMeasure, this.airportTestRadiusMeasure)); this.airportTestRadiusMeasure = airportTestRadiusMeasure; }
public void setAirportTestRadius(double airportTestRadius) { if (shouldNotify && this.airportTestRadius != airportTestRadius) HistoryListModel.getInstance() .addModel( new HistoryModel( "setAirportTestRadius", "Airport Test Radius", "", this, new Double(airportTestRadius), new Double(this.airportTestRadius))); this.airportTestRadius = airportTestRadius; }
public void setName(String name) { if (shouldNotify && !this.name.equals(name)) HistoryListModel.getInstance() .addModel(new HistoryModel("setName", "Name", "", this, name, this.name)); this.name = name; }
public void setCity(String city) { if (shouldNotify && !this.city.equals(city)) HistoryListModel.getInstance() .addModel(new HistoryModel("setCity", "City", "", this, city, this.city)); this.city = city; }
public void setState(String state) { if (shouldNotify && !this.state.equals(state)) HistoryListModel.getInstance() .addModel(new HistoryModel("setState", "State", "", this, state, this.state)); this.state = state; }
public void setCountry(String country) { if (shouldNotify && !this.country.equals(country)) HistoryListModel.getInstance() .addModel(new HistoryModel("setCountry", "Country", "", this, country, this.country)); this.country = country; }
public void setRegion(String region) { if (shouldNotify && !this.region.equals(region)) HistoryListModel.getInstance() .addModel(new HistoryModel("setRegion", "Region", "", this, region, this.region)); this.region = region; }