Wouldn't want it any other way! Since the three are completely unrelated

(well not entirely - they are associated).
As an example, I have a property ComPort and a private variable mComPort (which, you guessed it, stands for the serial port over which communication takes place). mComPort only holds a non-zero value if the port is actually open. The property get ComPort returns either the ComPort that was configured (through other means) or, if the port is open, the port that is actually being used. The property let Comport always configures the comport and if the port is currently open, it closes it and reopens the new port. As you can see each has different behavior and should therefore be described differently.
Now what would be nice is some nice method to quickly glance over the association of this triplet.