In some component JSP scripts, I see code similar to
<sling:include resource="<%= par %>" />
In which par is a Paragraph object.
According to the API docs for Paragraph, the toString() method simply "returns a human readable string representation of this resource."
The question, then, is why is this string representation of the Paragraph instance passed to <sling:include>? And what is the general format of the string returned by Paragraph.toString()?