The dotted lines are notifications (e.g. observer pattern) and the solid lines are direct knowledge (i.e. compile time dependencies). Data change notifications are flowing on the dotted lines. A solid line with an arrow says that one component has knowledge of the other and can directly push data. A dotted line is looser coupling as the sender is firing out an event but doesn't know the nature of the receiver of that event which is hidden behind an event listener interface (if you are doing event driven versions of those patterns).
The point of the patterns is to create order by avoiding spaghetti code where everything directly interacts with everything else. So the diagrams are really only hints about what should be decoupled from what. Like any such diagrams they are hard to grok without a detailed explanation and they are only really indicative of what you should aim for; certain frameworks have more or less support for doing things in a "pure way". How components get loaded and wired together is not in the scope of those diagrams; only what happens when the user inputs data or the model is updated through a different view component. So the actual classes may have compile time dependencies and code to initialise the objects which seem to violate the diagrams; yet so long as it is just "initialisation" code which is connecting things together it may not be material.
Here is a presentation which tries to explain MVP, MVC (or possibly MVVMP) and MVVM (aka MVB) in terms of some less formal diagrams which show what compiles to what and who notifies whom with observer pattern event listeners. It is relevant to your question as it sets the context about what the patterns aim to achieve which helps in interpreting the diagrams in your question:
Design Patterns in ZK: Java MVVM as Model-View-Binder, Simon Massey
Here is an article which doesn't have the diagrams in it but which does the same simple screen three times using three different GUI event driven desktop patterns (which can be loosely described as MVP, MVVM and MVC/MVVMP). One key point of confusion about the M__ patterns is that they are overloaded monikers and hardly very descriptive or indicative of the actual pattern. The article is relevant to your question as it follows Martin Fowlers formal description of the patterns which are clearer and less confusing than their "M__" names:
Implementing event-driven GUI patterns using the ZK Java AJAX framework, Simon Massey
Whilst that article does not specifically answer your question it does give a comparison of three implementations of the patterns you are asking about and compares them; so it is likely to shed some light on what the choices the patterns are making which the diagrams are meant to describe. Of course if you pick a different framework to implement the three patterns the example code would look different; but hopefully the same trade-offs would be seen as with the examples shown in that article.