protected void doRestoreState(RestorableSupport rs, RestorableSupport.StateObject context) { super.doRestoreState(rs, context); Iterable<LatLon> iterable = rs.getStateValueAsLatLonList(context, "locationList"); if (iterable != null) this.setLocations(iterable); Boolean b = rs.getStateValueAsBoolean(context, "closed"); if (b != null) this.setClosed(b); }
@Override protected void doRestoreState(RestorableSupport rs, RestorableSupport.StateObject context) { super.doRestoreState(rs, context); Boolean booleanState = rs.getStateValueAsBoolean(context, "enableCaps"); if (booleanState != null) this.setEnableCaps(booleanState); List<LatLon> locations = rs.getStateValueAsLatLonList(context, "locations"); if (locations != null) this.setLocations(locations); }
public void restoreState(RestorableSupport rs, RestorableSupport.StateObject so) { Boolean b = rs.getStateValueAsBoolean(so, "drawInterior"); if (b != null) this.setDrawInterior(b); b = rs.getStateValueAsBoolean(so, "drawOutline"); if (b != null) this.setDrawOutline(b); b = rs.getStateValueAsBoolean(so, "enableAntialiasing"); if (b != null) this.setEnableAntialiasing(b); RestorableSupport.StateObject mo = rs.getStateObject(so, "interiorMaterial"); if (mo != null) this.setInteriorMaterial(this.getInteriorMaterial().restoreState(rs, mo)); mo = rs.getStateObject(so, "outlineMaterial"); if (mo != null) this.setOutlineMaterial(this.getOutlineMaterial().restoreState(rs, mo)); Double d = rs.getStateValueAsDouble(so, "interiorOpacity"); if (d != null) this.setInteriorOpacity(d); d = rs.getStateValueAsDouble(so, "outlineOpacity"); if (d != null) this.setOutlineOpacity(d); d = rs.getStateValueAsDouble(so, "outlineWidth"); if (d != null) this.setOutlineWidth(d); Integer i = rs.getStateValueAsInteger(so, "outlineStippleFactor"); if (i != null) this.setOutlineStippleFactor(i); i = rs.getStateValueAsInteger(so, "outlineStipplePattern"); if (i != null) this.setOutlineStipplePattern(i.shortValue()); String s = rs.getStateValueAsString(so, "interiorImagePath"); if (s != null) this.setInteriorImageSource(s); d = rs.getStateValueAsDouble(so, "interiorImageScale"); if (d != null) this.setInteriorImageScale(d); }