Re: Saved property not taken into account correctly

by enkonyito » Fri Apr 05, 2019 11:49 pm

But why don't you manage your additional information with the methods [font=courier new]setProperty[/font] / [font=courier new]getProperty[/font] available on subclasses of HomeObject, like the [font=courier new]Room[/font] class? This would prevent you from subclassing classes which handle XML files.
Indeed, it's more practical!

Code: Select all

<room level='level0' areaVisible='true' areaXOffset='-130.0' areaYOffset='55.99997' floorColor='FF586178' ceilingVisible='false'>
  <point x='503.75' y='50.30641'/>
  <point x='503.75' y='426.80637'/>
  <point x='11.25' y='426.8065'/>
  <point x='11.25' y='50.30641'/>
</room>
<room level='level1' areaVisible='true' areaXOffset='-132.15613' areaYOffset='109.9032' floorVisible='false' floorColor='FF586178'>
  <property name='ceilingLightEnabled' value='true'/>
  <point x='503.8' y='50.3'/>
  <point x='503.8' y='426.8'/>
  <point x='11.2' y='426.8'/>
  <point x='11.2' y='50.3'/>
</room>
By selecting rooms of different state:
- with [font=courier new]NullableCheckBox[/font], I get the error

Code: Select all

Caused by: java.lang.NullPointerException
    at com.eteks.sweethome3d.viewcontroller.RoomController.setCeilingLightEnabled(RoomController.java:982)
    at com.eteks.sweethome3d.viewcontroller.RoomController.updateProperties(RoomController.java:420)
    at com.eteks.sweethome3d.viewcontroller.RoomController.<init>(RoomController.java:119)
    at com.eteks.sweethome3d.viewcontroller.PlanController.modifySelectedRooms(PlanController.java:1691)
- with [font=courier new]JCheckBox[/font] or by capturing the exception, the global state is not indicated (empty).