This is garbage.
Object Oriented Design deals with the fact that normalizing state and "normalizing" behavior (via functional decomposition) produce incompatible and poorly aligned structures. Systems that do this separately have the problem that, although data normalization and functional decomposition do a nice job of minimizing complexity in their respective domains, a high degree of complexity is created between the state structures and behavioral structures when they need to interoperate within the same program.
In general, think of an optimally designed state space and an optimally designed behavioral space as existing on opposite poles of a sphere. The closer your system gets to reaching one pole, the farther it gets from the other. This is simply because behavior is often orthogonal to state.
The authors seem oblivious to this as evidenced by the fact that the operations in their class diagrams are exclusively getters and setters of state information, which is why the state optimization (data normalization) techniques fit so nicely.